summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc
diff options
context:
space:
mode:
authorsungmann.cho@navercorp.com <sungmann.cho@navercorp.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 15:31:19 +0000
committersungmann.cho@navercorp.com <sungmann.cho@navercorp.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-07 15:31:19 +0000
commite8ca69c873f105a8c7778476e12f0a24ee3ba4d7 (patch)
tree00c728d6dde60d70e4b63aaadf3b6763b3d0e6ec /chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc
parentaf45603ceec5270899b4f7518a219715c58fbcd7 (diff)
downloadchromium_src-e8ca69c873f105a8c7778476e12f0a24ee3ba4d7.zip
chromium_src-e8ca69c873f105a8c7778476e12f0a24ee3ba4d7.tar.gz
chromium_src-e8ca69c873f105a8c7778476e12f0a24ee3ba4d7.tar.bz2
Move some content url constants to /url.
This CL moves the content::kHttpScheme and content::kHttpsScheme to /url. This is a follow up to https://codereview.chromium.org/25533005. BUG=306258 TEST=compile Review URL: https://codereview.chromium.org/254763005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268782 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc')
-rw-r--r--chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc b/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc
index 8356221..9cd4349 100644
--- a/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc
+++ b/chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc
@@ -14,14 +14,14 @@ namespace {
// URL schemes for which we'll send events.
const char* kValidSchemes[] = {
- content::kChromeUIScheme,
- content::kHttpScheme,
- content::kHttpsScheme,
- content::kFileScheme,
- content::kFtpScheme,
- content::kJavaScriptScheme,
- content::kDataScheme,
- content::kFileSystemScheme,
+ content::kChromeUIScheme,
+ url::kHttpScheme,
+ url::kHttpsScheme,
+ content::kFileScheme,
+ content::kFtpScheme,
+ content::kJavaScriptScheme,
+ content::kDataScheme,
+ content::kFileSystemScheme,
};
} // namespace