| Index: components/sync/driver/glue/sync_backend_host_impl_unittest.cc
|
| diff --git a/components/sync/driver/glue/sync_backend_host_impl_unittest.cc b/components/sync/driver/glue/sync_backend_host_impl_unittest.cc
|
| index 9572893d379383008ef828099aad85d0123df982..f615bb0464618973580ddd91a7f14d1bdc043272 100644
|
| --- a/components/sync/driver/glue/sync_backend_host_impl_unittest.cc
|
| +++ b/components/sync/driver/glue/sync_backend_host_impl_unittest.cc
|
| @@ -75,7 +75,7 @@ class MockSyncEngineHost : public SyncEngineHost {
|
| public:
|
| virtual ~MockSyncEngineHost() {}
|
|
|
| - MOCK_METHOD4(OnBackendInitialized,
|
| + MOCK_METHOD4(OnEngineInitialized,
|
| void(const WeakHandle<JsBackend>&,
|
| const WeakHandle<DataTypeDebugInfoListener>&,
|
| const std::string&,
|
| @@ -205,7 +205,7 @@ class SyncEngineTest : public testing::Test {
|
|
|
| // Synchronously initializes the backend.
|
| void InitializeBackend(bool expect_success) {
|
| - EXPECT_CALL(mock_host_, OnBackendInitialized(_, _, _, expect_success))
|
| + EXPECT_CALL(mock_host_, OnEngineInitialized(_, _, _, expect_success))
|
| .WillOnce(InvokeWithoutArgs(QuitMessageLoop));
|
| SyncEngine::HttpPostProviderFactoryGetter
|
| http_post_provider_factory_getter =
|
|
|