| 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..239a46e93c87c3ec79f012c5ebcc1063694b61fe 100644
|
| --- a/chrome/utility/importer/bookmark_html_reader.cc
|
| +++ b/chrome/utility/importer/bookmark_html_reader.cc
|
| @@ -14,10 +14,10 @@
|
| #include "chrome/common/importer/imported_bookmark_entry.h"
|
| #include "chrome/common/importer/imported_favicon_usage.h"
|
| #include "chrome/utility/importer/favicon_reencode.h"
|
| -#include "content/public/common/url_constants.h"
|
| #include "net/base/data_url.h"
|
| #include "net/base/escape.h"
|
| #include "url/gurl.h"
|
| +#include "url/url_constants.h"
|
|
|
| namespace {
|
|
|
| @@ -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.
|
|
|