I'm not sure that DevTools frontend is deployed with ChromeOS.
You can try using the externally hosted frontend. Change the
"http://localhost:1337/devtools/" prefix in your second URL to
"http://chrome-devtools-frontend.appspot.com/static/19.0.1071.0/"
> --
> Chromium Developers mailing list: chromi...@chromium.org
> View archives, change email options, or unsubscribe:
> http://groups.google.com/a/chromium.org/group/chromium-dev
On Mar 29, 11:22 pm, Rick Byers <rby...@chromium.org> wrote:I am not sure it is even necessary to file it: remote debugging has
> Thanks Pavel, glad this is fixed!
>
> Rob, it's probably still worth filing a bug so people can see this is a
> known issue with a fix in M20. Presumably this fix won't get back-ported
> to M19, right? I'm pretty sure I've seen this work in previous ChromeOS
> releases.
never been enabled for ChromeOS builds, we've never advertised it as
an end-user feature. I think you need a rooted device for that. I
guess you are talking about the DevTools themselves that used (and
still do) work on the ChromeOS!
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
Thanks Vlad. I was hoping there'd be an option like that, but didn't want to be too presumptuous. =)I'm the maintainer of https://github.com/appsforartists/pixel_webdev which helps web developers with limited Linux experience install all their typical tools on a Chromebook. It's uses crouton to install these native apps in a sandboxed chroot. The code editor I'm including is Sublime, which has a plugin that integrates really closely with Chrome on other platforms, but it's built around the HTTP API so I can't test it on my Chromebook. The plug-in is called SubIimeWebInspector, and it's on GitHub here: https://github.com/sokolovstas/SublimeWebInspectorI know Brackets also makes heavy use of the HTTP API.For these external tools that utilize the HTTP API, how would they move to an extension? It seems to me that they'd end up implementing their own ad hoc HTTP API (or more likely, trying to re-implement the present HTTP API, but from an extension). That would be more error-prone, less robust, and presumably less secure than utilizing Chrome's own implementation.
Do you know of a better solution? Making remote-debugging-port settable from a Chromebook certainly has the most bang-for-the-buck, but if there's a better way, I'll certainly open to it.
The main reason remote debugging is behind a command line flag in Chrome is security. Otherwise, apps running on local host would be able to attach to the running Chrome instance for inspection. So running with that command line flag is a very sensitive step security-wise. That's why the official (recommended) model involves implementing an extension with corresponding permissions + shows an infobar whenever there is a connection to warn user. WebStorm does it this way. I am surprised Brackets does not - they are a web app, they should be able to do it with no problem.
Somehow this email did not reach me (nor it is in the thread online).I don't think we should add an about:flag for this use case. Entering such mode on ChromeOS and toggling between screens with Chrome and IDE is not the experience we'd like to grant our users with. If one still wants it, adjusting the startup parameters for Chrome does not sound like a great effort (comparing to running Sublime under ChromeOS).RegardsPavelOn Thu, Aug 29, 2013 at 5:54 PM, Vladislav Kaznacheev <kazna...@google.com> wrote:
---------- Forwarded message ----------
From: Brenton Simpson <bre...@theillustratedlife.com>
Date: Thu, Aug 29, 2013 at 3:16 AM
Subject: Re: [chromium-dev] Re: Dev tools remote debugging port on ChromeOS
To: chromi...@chromium.org
Cc: Brenton Simpson <bre...@theillustratedlife.com>, Vladislav Kaznacheev <kazna...@google.com>, Robert Flack <fla...@chromium.org>, Mikhail Naganov <mnag...@chromium.org>, Matthew Bolohan <mbol...@chromium.org>
Pavel,Any objection to Vlad's proposal to expose remote-debugging-port in about:flags on ChromeOS? Between the ChromeOS firewall and the obscurity of about:flags, the surface area for accidental security boo-boos seems fairly small.Cheers,Brenton
On Monday, August 19, 2013 3:15:49 AM UTC-7, Pavel Feldman wrote:
Weird, cause I sent it from the online thread. (Now, there's a message where it used to be that says "This message has been deleted.")
My concern is that you can't add a command line flag to ChromeOS without modifying the read-only partition (which would evict you from the auto-update program). Am I mistaken about that? Is there a way to set remote-debugging-port without breaking auto-update?
Honestly, I'm not sure. Some helpful stranger put it in dev mode for me while I was waxing philosophical with Pavel at the Chrome booth at I/O.I *think* everything important is backed up on Github and/or Dropbox, so I suppose I can just wipe it again. I was just hoping I wouldn't have to, just in case there's something important that I forgot (and because Crouton takes too long to download).So, just to be sure, I can use make_dev_ssd to make my rootfs r/wable, and it will just be kicked back to its original state on auto-update? I thought I'd read that r/w mode disables auto-update.
--