Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: chrome/utility/importer/bookmarks_file_importer.cc

Issue 191293009: Cleanup: Move kAboutScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/net/url_fixer_upper.cc ('k') | content/browser/child_process_security_policy_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/bookmarks_file_importer.cc
diff --git a/chrome/utility/importer/bookmarks_file_importer.cc b/chrome/utility/importer/bookmarks_file_importer.cc
index b552a4f8105e00aaa9be086c24b5fc57a6eca6c5..909798e4135222e2bda86a0aeaf44ce0fa1ac984 100644
--- a/chrome/utility/importer/bookmarks_file_importer.cc
+++ b/chrome/utility/importer/bookmarks_file_importer.cc
@@ -46,7 +46,7 @@ bool CanImportURL(const GURL& url) {
// If |url| starts with chrome:// or about:, check if it's one of the URLs
// that we support.
if (url.SchemeIs(content::kChromeUIScheme) ||
- url.SchemeIs(chrome::kAboutScheme)) {
+ url.SchemeIs(content::kAboutScheme)) {
if (url.host() == chrome::kChromeUIUberHost ||
url.host() == chrome::kChromeUIAboutHost)
return true;
« no previous file with comments | « chrome/common/net/url_fixer_upper.cc ('k') | content/browser/child_process_security_policy_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698