diff options
Diffstat (limited to 'chrome/browser/browser_about_handler.cc')
-rw-r--r-- | chrome/browser/browser_about_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc index 15c499f..a51bda2 100644 --- a/chrome/browser/browser_about_handler.cc +++ b/chrome/browser/browser_about_handler.cc @@ -21,7 +21,7 @@ bool WillHandleBrowserAboutURL(GURL* url, // Check that about: URLs are fixed up to chrome: by URLFixerUpper::FixupURL. DCHECK((*url == GURL(content::kAboutBlankURL)) || - !url->SchemeIs(chrome::kAboutScheme)); + !url->SchemeIs(content::kAboutScheme)); // Only handle chrome://foo/, URLFixerUpper::FixupURL translates about:foo. if (!url->SchemeIs(content::kChromeUIScheme)) |