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

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

Issue 273193004: Move some content url constants to /url. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
Index: chrome/utility/importer/bookmark_html_reader.cc
diff --git a/chrome/utility/importer/bookmark_html_reader.cc b/chrome/utility/importer/bookmark_html_reader.cc
index dd44f5a2d1a1eeabd464ffe8175da3cc63f781fd..b82c287981b5534884f7f4f5aff14156d6ecaba5 100644
--- a/chrome/utility/importer/bookmark_html_reader.cc
+++ b/chrome/utility/importer/bookmark_html_reader.cc
@@ -57,7 +57,7 @@ void DataURLToFaviconUsage(
const GURL& favicon_data,
std::vector<ImportedFaviconUsage>* favicons) {
if (!link_url.is_valid() || !favicon_data.is_valid() ||
- !favicon_data.SchemeIs(content::kDataScheme))
+ !favicon_data.SchemeIs(url::kDataScheme))
return;
// Parse the data URL.

Powered by Google App Engine
This is Rietveld 408576698