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

Unified Diff: chrome/browser/sync/glue/shared_change_processor_mock.h

Issue 8065016: [Sync] Refactor non-frontend DTC to handle new API properly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase++++ Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/glue/shared_change_processor_mock.h
diff --git a/chrome/browser/sync/glue/shared_change_processor_mock.h b/chrome/browser/sync/glue/shared_change_processor_mock.h
new file mode 100644
index 0000000000000000000000000000000000000000..8e74f88c9af4b3144fe40cc985aaf2400c6d3f79
--- /dev/null
+++ b/chrome/browser/sync/glue/shared_change_processor_mock.h
@@ -0,0 +1,48 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_MOCK_H_
+#define CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_MOCK_H_
+#pragma once
+
+#include "chrome/browser/sync/api/sync_change.h"
+#include "chrome/browser/sync/glue/shared_change_processor.h"
+#include "chrome/browser/sync/unrecoverable_error_handler.h"
+#include "testing/gmock/include/gmock/gmock.h"
+
+namespace browser_sync {
+
+class SharedChangeProcessorMock : public SharedChangeProcessor {
+ public:
+ SharedChangeProcessorMock();
+
+ MOCK_METHOD4(Connect, bool(
+ ProfileSyncFactory* sync_factory,
+ ProfileSyncService* sync_service,
+ UnrecoverableErrorHandler* error_handler,
+ const base::WeakPtr<SyncableService>& local_service));
+ MOCK_METHOD0(Disconnect, bool());
+ MOCK_METHOD2(ProcessSyncChanges,
+ SyncError(const tracked_objects::Location& from_here,
+ const SyncChangeList& change_list));
+ MOCK_METHOD2(GetSyncDataForType,
+ SyncError(syncable::ModelType type,
+ SyncDataList* current_sync_data));
+ MOCK_METHOD2(SyncModelHasUserCreatedNodes,
+ bool(syncable::ModelType type,
+ bool* has_nodes));
+ MOCK_METHOD1(CryptoReadyIfNecessary, bool(syncable::ModelType type));
+
+ protected:
+ virtual ~SharedChangeProcessorMock();
+ MOCK_METHOD2(OnUnrecoverableError, void(const tracked_objects::Location&,
+ const std::string&));
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SharedChangeProcessorMock);
+};
+
+} // namespace browser_sync
+
+#endif // CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_MOCK_H_
« no previous file with comments | « chrome/browser/sync/glue/shared_change_processor.cc ('k') | chrome/browser/sync/glue/shared_change_processor_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698