| Index: components/bookmarks/browser/bookmark_utils.cc
|
| diff --git a/components/bookmarks/browser/bookmark_utils.cc b/components/bookmarks/browser/bookmark_utils.cc
|
| index 28690f273777331c92a28110030cc415c3c8deb9..e9f32d4b3ee86b05a24d13ac24d525bca352d1d6 100644
|
| --- a/components/bookmarks/browser/bookmark_utils.cc
|
| +++ b/components/bookmarks/browser/bookmark_utils.cc
|
| @@ -262,7 +262,7 @@ void MakeTitleUnique(const BookmarkModel* model,
|
| for (int i = 0; i < parent->child_count(); i++) {
|
| const BookmarkNode* node = parent->GetChild(i);
|
| if (node->is_url() && (url == node->url()) &&
|
| - StartsWith(node->GetTitle(), *title, false)) {
|
| + base::StartsWith(node->GetTitle(), *title, false)) {
|
| titles.insert(node->GetTitle());
|
| }
|
| }
|
|
|