| Index: chrome/browser/sync/glue/sync_backend_host_unittest.cc
|
| diff --git a/chrome/browser/sync/glue/sync_backend_host_unittest.cc b/chrome/browser/sync/glue/sync_backend_host_unittest.cc
|
| index 097ba04e0463fa58acb2ed597c060221d976a0ce..cde6568c8b3c3e530187f2e95766f193ae6ba08d 100644
|
| --- a/chrome/browser/sync/glue/sync_backend_host_unittest.cc
|
| +++ b/chrome/browser/sync/glue/sync_backend_host_unittest.cc
|
| @@ -8,6 +8,7 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop.h"
|
| +#include "chrome/browser/sync/invalidations/invalidator_storage.h"
|
| #include "chrome/browser/sync/sync_prefs.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/test/test_browser_thread.h"
|
| @@ -93,8 +94,10 @@ TEST_F(SyncBackendHostTest, InitShutdown) {
|
| profile.CreateRequestContext();
|
|
|
| SyncPrefs sync_prefs(profile.GetPrefs());
|
| + InvalidatorStorage invalidator_storage(profile.GetPrefs());
|
| SyncBackendHost backend(profile.GetDebugName(),
|
| - &profile, sync_prefs.AsWeakPtr());
|
| + &profile, sync_prefs.AsWeakPtr(),
|
| + invalidator_storage.AsWeakPtr());
|
|
|
| MockSyncFrontend mock_frontend;
|
| sync_api::SyncCredentials credentials;
|
|
|