| 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 5e215a14041f33d0e79d023eb522ed5b38c419cc..fc63fc9b1489c5c5fc7916de7b38e3df0d83eb6b 100644
|
| --- a/chrome/utility/importer/bookmarks_file_importer.cc
|
| +++ b/chrome/utility/importer/bookmarks_file_importer.cc
|
| @@ -50,8 +50,8 @@ bool CanImportURL(const GURL& url) {
|
| // that we support.
|
| if (url.SchemeIs(content::kChromeUIScheme) ||
|
| url.SchemeIs(url::kAboutScheme)) {
|
| - if (url.host() == chrome::kChromeUIUberHost ||
|
| - url.host() == chrome::kChromeUIAboutHost)
|
| + if (url.host_piece() == chrome::kChromeUIUberHost ||
|
| + url.host_piece() == chrome::kChromeUIAboutHost)
|
| return true;
|
|
|
| GURL fixed_url(url_formatter::FixupURL(url.spec(), std::string()));
|
|
|