From 1744f4f9552bec6b0cab92b865eb8250bc9c4634 Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Mon, 10 Mar 2014 20:08:39 +0000 Subject: Cleanup: Move kAboutScheme constant into content namespace. This moves the last constant from chrome to content namespace and fixes the John's TODO. $ git grep "namespace chrome" content/ returns 0 entries. BUG=None TEST=None, no functional changes TBR=jam@chromium.org Review URL: https://codereview.chromium.org/191293009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256015 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/browser_about_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/browser_about_handler.cc') 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)) -- cgit v1.1