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

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

Issue 247433004: sync: remove CreateSharedChangeProcessor from ProfileSyncComponentsFactory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove SCPFactory Created 6 years, 8 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
deleted file mode 100644
index 21a3f5a42e4cacba73d4e7a9a6384f315f573e84..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/glue/shared_change_processor_mock.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright (c) 2012 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_
-
-#include "chrome/browser/sync/glue/shared_change_processor.h"
-#include "sync/api/sync_change.h"
-#include "sync/api/sync_data.h"
-#include "sync/internal_api/public/util/unrecoverable_error_handler.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace browser_sync {
-
-class SharedChangeProcessorMock : public SharedChangeProcessor {
- public:
- SharedChangeProcessorMock();
-
- MOCK_METHOD5(Connect, base::WeakPtr<syncer::SyncableService>(
- ProfileSyncComponentsFactory*,
- ProfileSyncService*,
- DataTypeErrorHandler*,
- syncer::ModelType,
- const base::WeakPtr<syncer::SyncMergeResult>&));
- MOCK_METHOD0(Disconnect, bool());
- MOCK_METHOD2(ProcessSyncChanges,
- syncer::SyncError(const tracked_objects::Location&,
- const syncer::SyncChangeList&));
- MOCK_CONST_METHOD2(GetAllSyncDataReturnError,
- syncer::SyncError(syncer::ModelType,
- syncer::SyncDataList*));
- MOCK_METHOD0(GetSyncCount, int());
- MOCK_METHOD1(SyncModelHasUserCreatedNodes,
- bool(bool*));
- MOCK_METHOD0(CryptoReadyIfNecessary, bool());
- MOCK_CONST_METHOD1(GetDataTypeContext, bool(std::string*));
- MOCK_METHOD1(ActivateDataType,
- void(syncer::ModelSafeGroup));
-
- 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_

Powered by Google App Engine
This is Rietveld 408576698