Index: url/gurl.cc |
diff --git a/url/gurl.cc b/url/gurl.cc |
index 947403e19705598e9ef32cc67ea609ab21584c28..b7374b1f20e87a47fd372dd0861edff9db172d5c 100644 |
--- a/url/gurl.cc |
+++ b/url/gurl.cc |
@@ -137,7 +137,7 @@ void GURL::InitializeFromCanonicalSpec() { |
// canonical_spec actually points to the start of the outer URL, so we'd |
// end up with infinite recursion in this constructor. |
if (!url::FindAndCompareScheme(spec_.data(), spec_.length(), |
- "filesystem", &scheme) || |
+ url::kFileSystemScheme, &scheme) || |
scheme.begin == parsed_.scheme.begin) { |
// We need to retain trailing whitespace on path URLs, as the |parsed_| |
// spec we originally received may legitimately contain trailing white- |