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 bc3ea912ee6239e483723577939d155f98c46ae5..68da552db574bc802f54f48342c5dd8090a4c89d 100644 |
--- a/chrome/common/net/url_fixer_upper.cc |
+++ b/chrome/common/net/url_fixer_upper.cc |
@@ -426,7 +426,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) && (scheme != chrome::kChromeUIScheme) && |
- ((scheme == chrome::kFileScheme) || !url_util::IsStandard(scheme.c_str(), |
+ ((scheme == content::kFileScheme) || !url_util::IsStandard(scheme.c_str(), |
url_parse::Component(0, static_cast<int>(scheme.length()))))) |
return scheme; |
@@ -517,7 +517,7 @@ GURL URLFixerUpper::FixupURL(const std::string& text, |
} |
// We handle the file scheme separately. |
- if (scheme == chrome::kFileScheme) |
+ if (scheme == content::kFileScheme) |
return GURL(parts.scheme.is_valid() ? text : FixupPath(text)); |
// We handle the filesystem scheme separately. |