OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ |
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 MOCK_CONST_METHOD0(FirstSetupInProgress, bool()); | 89 MOCK_CONST_METHOD0(FirstSetupInProgress, bool()); |
90 MOCK_CONST_METHOD0(GetLastSyncedTimeString, string16()); | 90 MOCK_CONST_METHOD0(GetLastSyncedTimeString, string16()); |
91 MOCK_CONST_METHOD0(HasUnrecoverableError, bool()); | 91 MOCK_CONST_METHOD0(HasUnrecoverableError, bool()); |
92 MOCK_CONST_METHOD0(sync_initialized, bool()); | 92 MOCK_CONST_METHOD0(sync_initialized, bool()); |
93 MOCK_CONST_METHOD0(IsStartSuppressed, bool()); | 93 MOCK_CONST_METHOD0(IsStartSuppressed, bool()); |
94 MOCK_CONST_METHOD0(waiting_for_auth, bool()); | 94 MOCK_CONST_METHOD0(waiting_for_auth, bool()); |
95 MOCK_METHOD1(OnActionableError, void( | 95 MOCK_METHOD1(OnActionableError, void( |
96 const syncer::SyncProtocolError&)); | 96 const syncer::SyncProtocolError&)); |
97 MOCK_METHOD1(SetSetupInProgress, void(bool)); | 97 MOCK_METHOD1(SetSetupInProgress, void(bool)); |
98 | 98 |
99 MOCK_METHOD0(GetSessionModelAssociator, | 99 MOCK_METHOD0(GetOpenTabsUIDelegate, |
100 browser_sync::SessionModelAssociator*()); | 100 browser_sync::OpenTabsUIDelegate*()); |
101 MOCK_CONST_METHOD0(GetAllSignedInDevicesMock, | 101 MOCK_CONST_METHOD0(GetAllSignedInDevicesMock, |
102 std::vector<browser_sync::DeviceInfo*>* ()); | 102 std::vector<browser_sync::DeviceInfo*>* ()); |
103 // This is to get around the fact that GMOCK does not handle Scoped*. | 103 // This is to get around the fact that GMOCK does not handle Scoped*. |
104 virtual ScopedVector<browser_sync::DeviceInfo> | 104 virtual ScopedVector<browser_sync::DeviceInfo> |
105 GetAllSignedInDevices() const OVERRIDE; | 105 GetAllSignedInDevices() const OVERRIDE; |
106 | 106 |
107 // DataTypeManagerObserver mocks. | 107 // DataTypeManagerObserver mocks. |
108 MOCK_METHOD0(OnConfigureBlocked, void()); | 108 MOCK_METHOD0(OnConfigureBlocked, void()); |
109 MOCK_METHOD1(OnConfigureDone, | 109 MOCK_METHOD1(OnConfigureDone, |
110 void(const browser_sync::DataTypeManager::ConfigureResult&)); | 110 void(const browser_sync::DataTypeManager::ConfigureResult&)); |
(...skipping 10 matching lines...) Expand all Loading... |
121 MOCK_CONST_METHOD0(GetPassphraseType, syncer::PassphraseType()); | 121 MOCK_CONST_METHOD0(GetPassphraseType, syncer::PassphraseType()); |
122 MOCK_CONST_METHOD0(GetPassphraseTime, base::Time()); | 122 MOCK_CONST_METHOD0(GetPassphraseTime, base::Time()); |
123 MOCK_CONST_METHOD0(GetExplicitPassphraseTime, base::Time()); | 123 MOCK_CONST_METHOD0(GetExplicitPassphraseTime, base::Time()); |
124 | 124 |
125 MOCK_METHOD1(SetDecryptionPassphrase, bool(const std::string& passphrase)); | 125 MOCK_METHOD1(SetDecryptionPassphrase, bool(const std::string& passphrase)); |
126 MOCK_METHOD2(SetEncryptionPassphrase, void(const std::string& passphrase, | 126 MOCK_METHOD2(SetEncryptionPassphrase, void(const std::string& passphrase, |
127 PassphraseType type)); | 127 PassphraseType type)); |
128 }; | 128 }; |
129 | 129 |
130 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ | 130 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ |
OLD | NEW |