| 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 d8fa9acbf43c832e78f99d3722002a494b88f95b..11b7c22926e984e442c1ffdae9dade4543c16c19 100644
|
| --- a/chrome/utility/importer/bookmark_html_reader.cc
|
| +++ b/chrome/utility/importer/bookmark_html_reader.cc
|
| @@ -110,7 +110,7 @@ void ImportBookmarksFile(
|
| (cancellation_callback.is_null() || !cancellation_callback.Run());
|
| ++i) {
|
| std::string line;
|
| - TrimString(lines[i], " ", &line);
|
| + base::TrimString(lines[i], " ", &line);
|
|
|
| // Remove "<HR>" if |line| starts with it. "<HR>" is the bookmark entries
|
| // separator in Firefox that Chrome does not support. Note that there can be
|
| @@ -119,7 +119,7 @@ void ImportBookmarksFile(
|
| static const char kHrTag[] = "<HR>";
|
| while (StartsWithASCII(line, kHrTag, false)) {
|
| line.erase(0, arraysize(kHrTag) - 1);
|
| - TrimString(line, " ", &line);
|
| + base::TrimString(line, " ", &line);
|
| }
|
|
|
| // Get the encoding of the bookmark file.
|
|
|