(Reposting to the more suitable group) I really hope this will be merged to the 178 branch quickly...
(It was very hard to debug the extensions the past two days in Chromium...) Thank you all!!! ☆PhistucK On Wed, May 6, 2009 at 20:37, <[email protected]> wrote: > > Author: [email protected] > Date: Wed May 6 10:37:21 2009 > New Revision: 15423 > > Log: > Add an extra colon to make inspector work again. > > This was broken by http://codereview.chromium.org/101026. > > > R=glen > BUG=11532 > TESt=open inspector. Inspector shouldn't show a blank page. > > Review URL: http://codereview.chromium.org/113034 > > Modified: > trunk/src/chrome/browser/debugger/debugger_view.cc > trunk/src/chrome/renderer/renderer_glue.cc > > Modified: trunk/src/chrome/browser/debugger/debugger_view.cc > > ============================================================================== > --- trunk/src/chrome/browser/debugger/debugger_view.cc (original) > +++ trunk/src/chrome/browser/debugger/debugger_view.cc Wed May 6 10:37:21 > 2009 > @@ -106,7 +106,7 @@ > tab_contents_->render_view_host()->AllowDOMUIBindings(); > > GURL contents(std::string(chrome::kChromeUIScheme) + > - "//inspector/debugger.html"); > + "://inspector/debugger.html"); > tab_contents_->controller().LoadURL(contents, GURL(), > PageTransition::START_PAGE); > } > > Modified: trunk/src/chrome/renderer/renderer_glue.cc > > ============================================================================== > --- trunk/src/chrome/renderer/renderer_glue.cc (original) > +++ trunk/src/chrome/renderer/renderer_glue.cc Wed May 6 10:37:21 2009 > @@ -209,7 +209,7 @@ > > GURL GetInspectorURL() { > return GURL(std::string(chrome::kChromeUIScheme) + > - "//inspector/inspector.html"); > + "://inspector/inspector.html"); > } > > std::string GetUIResourceProtocol() { > > > > --~--~---------~--~----~------------~-------~--~----~ Chromium Developers mailing list: [email protected] View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~----------~----~----~----~------~----~------~--~---
