summaryrefslogtreecommitdiffstats
path: root/url/url_canon_filesystemurl.cc
diff options
context:
space:
mode:
authorsungmann.cho@navercorp.com <sungmann.cho@navercorp.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-28 21:32:26 +0000
committersungmann.cho@navercorp.com <sungmann.cho@navercorp.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-28 21:32:26 +0000
commitcca6f39ac7e4b12707b42ad05efd822106e8f396 (patch)
treebb3d0dd8fe7ac653b1debc119237df2a968f790d /url/url_canon_filesystemurl.cc
parent7db86399f99987aa1a041692f53b41353b7ebf7b (diff)
downloadchromium_src-cca6f39ac7e4b12707b42ad05efd822106e8f396.zip
chromium_src-cca6f39ac7e4b12707b42ad05efd822106e8f396.tar.gz
chromium_src-cca6f39ac7e4b12707b42ad05efd822106e8f396.tar.bz2
Move some content url constants to /url.
This CL moves the content url constants below to /url: content::kBlobScheme content::kDataScheme content::kFileScheme content::kFileSystemScheme content::kFtpScheme content::kJavaScriptScheme content::kMailToScheme This is a follow up to https://codereview.chromium.org/254763005. BUG=306258 TBR=finnur@chromium.org,mkosiba@chromium.org,derat@chromium.org TEST=compile Review URL: https://codereview.chromium.org/273193004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273359 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'url/url_canon_filesystemurl.cc')
-rw-r--r--url/url_canon_filesystemurl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/url/url_canon_filesystemurl.cc b/url/url_canon_filesystemurl.cc
index f330e22..18e9055 100644
--- a/url/url_canon_filesystemurl.cc
+++ b/url/url_canon_filesystemurl.cc
@@ -43,7 +43,7 @@ bool DoCanonicalizeFileSystemURL(const CHAR* spec,
return false;
bool success = true;
- if (CompareSchemeComponent(spec, inner_parsed->scheme, kFileScheme)) {
+ if (CompareSchemeComponent(spec, inner_parsed->scheme, url::kFileScheme)) {
new_inner_parsed.scheme.begin = output->length();
output->Append("file://", 7);
new_inner_parsed.scheme.len = 4;