Index: components/browser_sync/browser/profile_sync_test_util.h |
diff --git a/components/browser_sync/browser/profile_sync_test_util.h b/components/browser_sync/browser/profile_sync_test_util.h |
index 4a55cafe7ee037726fbd5708b04f57e89b479121..b5bea3a2eac1526c0977f6889904288ac072b9db 100644 |
--- a/components/browser_sync/browser/profile_sync_test_util.h |
+++ b/components/browser_sync/browser/profile_sync_test_util.h |
@@ -99,6 +99,10 @@ class ProfileSyncServiceBundle { |
void SetHistoryService(history::HistoryService* history_service); |
+ void SetBookmarkModelCallback( |
+ const base::Callback<bookmarks::BookmarkModel*(void)>& |
+ get_bookmark_model_callback); |
+ |
void set_activate_model_creation() { activate_model_creation_ = true; } |
scoped_ptr<sync_driver::FakeSyncClient> Build(); |
@@ -114,6 +118,8 @@ class ProfileSyncServiceBundle { |
get_syncable_service_callback_; |
base::Callback<sync_driver::SyncService*(void)> get_sync_service_callback_; |
history::HistoryService* history_service_ = nullptr; |
+ base::Callback<bookmarks::BookmarkModel*(void)> |
+ get_bookmark_model_callback_; |
// If set, the built client will be able to build some ModelSafeWorker |
// instances. |
bool activate_model_creation_ = false; |