Index: chrome/common/net/url_fixer_upper.cc |
diff --git a/chrome/common/net/url_fixer_upper.cc b/chrome/common/net/url_fixer_upper.cc |
index 96d7f4ecf7aa466466fd8f4ad98ceae4a1cb7e27..3679d59f691a28b810f1e1825debc367507a7647 100644 |
--- a/chrome/common/net/url_fixer_upper.cc |
+++ b/chrome/common/net/url_fixer_upper.cc |
@@ -428,7 +428,7 @@ std::string SegmentURLInternal(std::string* text, url_parse::Parsed* parts) { |
} |
// Proceed with about and chrome schemes, but not file or nonstandard schemes. |
- if ((scheme != chrome::kAboutScheme) && |
+ if ((scheme != content::kAboutScheme) && |
(scheme != content::kChromeUIScheme) && |
((scheme == content::kFileScheme) || |
!url_util::IsStandard( |
@@ -535,7 +535,7 @@ GURL URLFixerUpper::FixupURL(const std::string& text, |
// Parse and rebuild about: and chrome: URLs, except about:blank. |
bool chrome_url = !LowerCaseEqualsASCII(trimmed, content::kAboutBlankURL) && |
- ((scheme == chrome::kAboutScheme) || |
+ ((scheme == content::kAboutScheme) || |
(scheme == content::kChromeUIScheme)); |
// For some schemes whose layouts we understand, we rebuild it. |