Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: components/browser_sync/browser/profile_sync_service_mock.h

Issue 2066493003: Revert of Sync: Support multiple setup UIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_ 5 #ifndef COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_
6 #define COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_ 6 #define COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 bool(browser_sync::SyncBackendHost::Status* result)); 69 bool(browser_sync::SyncBackendHost::Status* result));
70 MOCK_CONST_METHOD0(GetAuthError, const GoogleServiceAuthError&()); 70 MOCK_CONST_METHOD0(GetAuthError, const GoogleServiceAuthError&());
71 MOCK_CONST_METHOD0(IsFirstSetupInProgress, bool()); 71 MOCK_CONST_METHOD0(IsFirstSetupInProgress, bool());
72 MOCK_CONST_METHOD0(GetLastSyncedTimeString, base::string16()); 72 MOCK_CONST_METHOD0(GetLastSyncedTimeString, base::string16());
73 MOCK_CONST_METHOD0(HasUnrecoverableError, bool()); 73 MOCK_CONST_METHOD0(HasUnrecoverableError, bool());
74 MOCK_CONST_METHOD0(IsSyncActive, bool()); 74 MOCK_CONST_METHOD0(IsSyncActive, bool());
75 MOCK_CONST_METHOD0(IsBackendInitialized, bool()); 75 MOCK_CONST_METHOD0(IsBackendInitialized, bool());
76 MOCK_CONST_METHOD0(IsSyncRequested, bool()); 76 MOCK_CONST_METHOD0(IsSyncRequested, bool());
77 MOCK_CONST_METHOD0(waiting_for_auth, bool()); 77 MOCK_CONST_METHOD0(waiting_for_auth, bool());
78 MOCK_METHOD1(OnActionableError, void(const syncer::SyncProtocolError&)); 78 MOCK_METHOD1(OnActionableError, void(const syncer::SyncProtocolError&));
79 MOCK_METHOD1(SetSetupInProgress, void(bool));
79 MOCK_CONST_METHOD1(IsDataTypeControllerRunning, bool(syncer::ModelType)); 80 MOCK_CONST_METHOD1(IsDataTypeControllerRunning, bool(syncer::ModelType));
80 81
81 // DataTypeManagerObserver mocks. 82 // DataTypeManagerObserver mocks.
82 MOCK_METHOD1(OnConfigureDone, 83 MOCK_METHOD1(OnConfigureDone,
83 void(const sync_driver::DataTypeManager::ConfigureResult&)); 84 void(const sync_driver::DataTypeManager::ConfigureResult&));
84 MOCK_METHOD0(OnConfigureStart, void()); 85 MOCK_METHOD0(OnConfigureStart, void());
85 86
86 MOCK_CONST_METHOD0(CanSyncStart, bool()); 87 MOCK_CONST_METHOD0(CanSyncStart, bool());
87 MOCK_CONST_METHOD0(IsManaged, bool()); 88 MOCK_CONST_METHOD0(IsManaged, bool());
88 89
89 MOCK_CONST_METHOD0(IsPassphraseRequired, bool()); 90 MOCK_CONST_METHOD0(IsPassphraseRequired, bool());
90 MOCK_CONST_METHOD0(IsPassphraseRequiredForDecryption, bool()); 91 MOCK_CONST_METHOD0(IsPassphraseRequiredForDecryption, bool());
91 MOCK_CONST_METHOD0(IsUsingSecondaryPassphrase, bool()); 92 MOCK_CONST_METHOD0(IsUsingSecondaryPassphrase, bool());
92 MOCK_CONST_METHOD0(GetPassphraseType, syncer::PassphraseType()); 93 MOCK_CONST_METHOD0(GetPassphraseType, syncer::PassphraseType());
93 MOCK_CONST_METHOD0(GetExplicitPassphraseTime, base::Time()); 94 MOCK_CONST_METHOD0(GetExplicitPassphraseTime, base::Time());
94 95
95 MOCK_METHOD1(SetDecryptionPassphrase, bool(const std::string& passphrase)); 96 MOCK_METHOD1(SetDecryptionPassphrase, bool(const std::string& passphrase));
96 MOCK_METHOD2(SetEncryptionPassphrase, void(const std::string& passphrase, 97 MOCK_METHOD2(SetEncryptionPassphrase, void(const std::string& passphrase,
97 PassphraseType type)); 98 PassphraseType type));
98
99 MOCK_METHOD0(OnSetupInProgressHandleDestroyed, void());
100 }; 99 };
101 100
102 #endif // COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_ 101 #endif // COMPONENTS_BROWSER_SYNC_BROWSER_PROFILE_SYNC_SERVICE_MOCK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698