| 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;
|
|
|