OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_MOCK_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_MOCK_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "chrome/browser/sync/api/sync_change.h" |
| 10 #include "chrome/browser/sync/glue/shared_change_processor.h" |
| 11 #include "chrome/browser/sync/unrecoverable_error_handler.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" |
| 13 |
| 14 namespace browser_sync { |
| 15 |
| 16 class SharedChangeProcessorMock : public SharedChangeProcessor { |
| 17 public: |
| 18 SharedChangeProcessorMock(); |
| 19 |
| 20 MOCK_METHOD4(Connect, bool( |
| 21 ProfileSyncFactory* sync_factory, |
| 22 ProfileSyncService* sync_service, |
| 23 UnrecoverableErrorHandler* error_handler, |
| 24 const base::WeakPtr<SyncableService>& local_service)); |
| 25 MOCK_METHOD0(Disconnect, bool()); |
| 26 MOCK_METHOD2(ProcessSyncChanges, |
| 27 SyncError(const tracked_objects::Location& from_here, |
| 28 const SyncChangeList& change_list)); |
| 29 MOCK_METHOD2(GetSyncDataForType, |
| 30 SyncError(syncable::ModelType type, |
| 31 SyncDataList* current_sync_data)); |
| 32 MOCK_METHOD2(SyncModelHasUserCreatedNodes, |
| 33 bool(syncable::ModelType type, |
| 34 bool* has_nodes)); |
| 35 MOCK_METHOD1(CryptoReadyIfNecessary, bool(syncable::ModelType type)); |
| 36 |
| 37 protected: |
| 38 virtual ~SharedChangeProcessorMock(); |
| 39 MOCK_METHOD2(OnUnrecoverableError, void(const tracked_objects::Location&, |
| 40 const std::string&)); |
| 41 |
| 42 private: |
| 43 DISALLOW_COPY_AND_ASSIGN(SharedChangeProcessorMock); |
| 44 }; |
| 45 |
| 46 } // namespace browser_sync |
| 47 |
| 48 #endif // CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_MOCK_H_ |
OLD | NEW |