diff options
author | podivilov@chromium.org <podivilov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-16 12:58:04 +0000 |
---|---|---|
committer | podivilov@chromium.org <podivilov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-16 12:58:04 +0000 |
commit | 1faeb6f2fb52f8bb803947bfd5972819d93938a0 (patch) | |
tree | 85d433b499f58a28bbc16a57fb38b4a3ee67f817 | |
parent | 6ac9f12fdb2a1710ff741b9e94a03d1392461ccb (diff) | |
download | chromium_src-1faeb6f2fb52f8bb803947bfd5972819d93938a0.zip chromium_src-1faeb6f2fb52f8bb803947bfd5972819d93938a0.tar.gz chromium_src-1faeb6f2fb52f8bb803947bfd5972819d93938a0.tar.bz2 |
Fix devtools schema is in DevToolsHttpProtocolHandler.
R=yurys@chromium.org
BUG=remote debugging is broken
TEST=
Review URL: http://codereview.chromium.org/6695024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78352 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/debugger/devtools_http_protocol_handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/debugger/devtools_http_protocol_handler.cc b/chrome/browser/debugger/devtools_http_protocol_handler.cc index 7e70ec5..8ae7ec2 100644 --- a/chrome/browser/debugger/devtools_http_protocol_handler.cc +++ b/chrome/browser/debugger/devtools_http_protocol_handler.cc @@ -135,9 +135,9 @@ void DevToolsHttpProtocolHandler::OnHttpRequest( return; } - // Proxy static files from chrome://devtools/*. + // Proxy static files from chrome-devtools://devtools/*. net::URLRequest* request = new net::URLRequest( - GURL("chrome:/" + info.path), this); + GURL("chrome-devtools:/" + info.path), this); Bind(request, connection_id); request->set_context( Profile::GetDefaultRequestContext()->GetURLRequestContext()); |