Chromium Code Reviews| Index: components/browser_sync/browser/profile_sync_service_mock.h |
| diff --git a/components/browser_sync/browser/profile_sync_service_mock.h b/components/browser_sync/browser/profile_sync_service_mock.h |
| index 255aa2fba9bfd5f7006a54f0cb69d04abc4f134b..5985c7e5c41ca33e4546014c530e38be31d8302d 100644 |
| --- a/components/browser_sync/browser/profile_sync_service_mock.h |
| +++ b/components/browser_sync/browser/profile_sync_service_mock.h |
| @@ -76,7 +76,6 @@ class ProfileSyncServiceMock : public ProfileSyncService { |
| MOCK_CONST_METHOD0(IsSyncRequested, bool()); |
| MOCK_CONST_METHOD0(waiting_for_auth, bool()); |
| MOCK_METHOD1(OnActionableError, void(const syncer::SyncProtocolError&)); |
| - MOCK_METHOD1(SetSetupInProgress, void(bool)); |
| MOCK_CONST_METHOD1(IsDataTypeControllerRunning, bool(syncer::ModelType)); |
| // DataTypeManagerObserver mocks. |
| @@ -96,6 +95,8 @@ class ProfileSyncServiceMock : public ProfileSyncService { |
| MOCK_METHOD1(SetDecryptionPassphrase, bool(const std::string& passphrase)); |
| MOCK_METHOD2(SetEncryptionPassphrase, void(const std::string& passphrase, |
| PassphraseType type)); |
| + |
| + MOCK_METHOD0(OnSetupInProgressHandleDestroyed, void()); |
|
bzanotti
2016/06/14 09:47:20
This is only a replacement for SetSetupInProgress(
|
| }; |
| #endif // COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_ |