| Index: chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc b/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc
|
| index 73babc4d99342c109231b4ec97e8977dfe394464..91f0f1c8ec04a3c35b5a4ff0f89dcd2ee00a9d36 100644
|
| --- a/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc
|
| +++ b/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc
|
| @@ -56,14 +56,14 @@ class HistoryMock : public HistoryService {
|
|
|
| KeyedService* BuildBookmarkModel(content::BrowserContext* context) {
|
| Profile* profile = static_cast<Profile*>(context);
|
| - BookmarkModel* bookmark_model = new BookmarkModel(profile);
|
| + BookmarkModel* bookmark_model = new BookmarkModel(profile, false);
|
| bookmark_model->Load(profile->GetIOTaskRunner());
|
| return bookmark_model;
|
| }
|
|
|
| KeyedService* BuildBookmarkModelWithoutLoading(
|
| content::BrowserContext* profile) {
|
| - return new BookmarkModel(static_cast<Profile*>(profile));
|
| + return new BookmarkModel(static_cast<Profile*>(profile), false);
|
| }
|
|
|
| KeyedService* BuildHistoryService(content::BrowserContext* profile) {
|
|
|