| Index: chrome/browser/importer/profile_writer_unittest.cc
|
| diff --git a/chrome/browser/importer/profile_writer_unittest.cc b/chrome/browser/importer/profile_writer_unittest.cc
|
| index 6ef78c5be9cd6567156e2c101add079ff4410b07..51cef041d3d4e701f9efd055fb328cdf4fefc951 100644
|
| --- a/chrome/browser/importer/profile_writer_unittest.cc
|
| +++ b/chrome/browser/importer/profile_writer_unittest.cc
|
| @@ -18,7 +18,7 @@
|
| #include "chrome/browser/importer/importer_unittest_utils.h"
|
| #include "chrome/common/importer/imported_bookmark_entry.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| -#include "components/bookmarks/core/browser/bookmark_title_match.h"
|
| +#include "components/bookmarks/core/browser/bookmark_match.h"
|
| #include "content/public/test/test_browser_thread.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| @@ -80,11 +80,10 @@ class ProfileWriterTest : public testing::Test {
|
| const std::vector<BookmarkService::URLAndTitle>& bookmarks_record,
|
| BookmarkModel* bookmark_model,
|
| size_t expected) {
|
| - std::vector<BookmarkTitleMatch> matches;
|
| + std::vector<BookmarkMatch> matches;
|
| for (size_t i = 0; i < bookmarks_record.size(); ++i) {
|
| - bookmark_model->GetBookmarksWithTitlesMatching(bookmarks_record[i].title,
|
| - 10,
|
| - &matches);
|
| + bookmark_model->GetBookmarksMatching(
|
| + bookmarks_record[i].title, 10, &matches);
|
| EXPECT_EQ(expected, matches.size());
|
| matches.clear();
|
| }
|
|
|