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

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

Issue 325443002: Move about://-related constants from //content to //url (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android ifx Created 6 years, 6 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/test/ppapi/ppapi_browsertest.cc ('k') | components/bookmarks/browser/bookmark_index_unittest.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 909798e4135222e2bda86a0aeaf44ce0fa1ac984..f1a51b10a8cfae170a9ab817eb3f23316b109113 100644
--- a/chrome/utility/importer/bookmarks_file_importer.cc
+++ b/chrome/utility/importer/bookmarks_file_importer.cc
@@ -40,13 +40,13 @@ bool CanImportURL(const GURL& url) {
}
// Check if |url| is about:blank.
- if (url == GURL(content::kAboutBlankURL))
+ if (url == GURL(url::kAboutBlankURL))
return true;
// 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(content::kAboutScheme)) {
+ url.SchemeIs(url::kAboutScheme)) {
if (url.host() == chrome::kChromeUIUberHost ||
url.host() == chrome::kChromeUIAboutHost)
return true;
« no previous file with comments | « chrome/test/ppapi/ppapi_browsertest.cc ('k') | components/bookmarks/browser/bookmark_index_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698