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

Unified Diff: chrome/browser/sync/profile_sync_factory_mock.h

Issue 8596017: sync: rename ProfileSyncFactory to ProfileSyncComponentsFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: final Created 9 years, 1 month 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/profile_sync_factory_mock.h
diff --git a/chrome/browser/sync/profile_sync_factory_mock.h b/chrome/browser/sync/profile_sync_factory_mock.h
deleted file mode 100644
index c6b07a0f2485652cd83cceae6eb24baea2c976ea..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/profile_sync_factory_mock.h
+++ /dev/null
@@ -1,96 +0,0 @@
-// 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_PROFILE_SYNC_FACTORY_MOCK_H__
-#define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_MOCK_H__
-#pragma once
-
-#include "base/memory/scoped_ptr.h"
-#include "chrome/browser/sync/profile_sync_service.h"
-#include "chrome/browser/sync/profile_sync_factory.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace browser_sync {
-class AssociatorInterface;
-class ChangeProcessor;
-}
-
-class ProfileSyncFactoryMock : public ProfileSyncFactory {
- public:
- ProfileSyncFactoryMock();
- ProfileSyncFactoryMock(
- browser_sync::AssociatorInterface* model_associator,
- browser_sync::ChangeProcessor* change_processor);
- virtual ~ProfileSyncFactoryMock();
-
- MOCK_METHOD1(CreateProfileSyncService,
- ProfileSyncService*(const std::string&));
- MOCK_METHOD1(RegisterDataTypes, void(ProfileSyncService*));
- MOCK_METHOD2(CreateDataTypeManager,
- browser_sync::DataTypeManager*(
- browser_sync::SyncBackendHost*,
- const browser_sync::DataTypeController::TypeMap*));
- MOCK_METHOD3(CreateGenericChangeProcessor,
- browser_sync::GenericChangeProcessor*(
- ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler,
- const base::WeakPtr<SyncableService>& local_service));
- MOCK_METHOD0(CreateSharedChangeProcessor,
- browser_sync::SharedChangeProcessor*());
- MOCK_METHOD2(CreateAppSyncComponents,
- SyncComponents(ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_CONST_METHOD1(GetAutofillProfileSyncableService,
- base::WeakPtr<SyncableService>(
- WebDataService* web_data_service));
- MOCK_CONST_METHOD1(GetAutocompleteSyncableService,
- base::WeakPtr<SyncableService>(
- WebDataService* web_data_service));
- MOCK_METHOD2(CreateBookmarkSyncComponents,
- SyncComponents(ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD2(CreateExtensionSyncComponents,
- SyncComponents(ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD4(CreateExtensionOrAppSettingSyncComponents,
- SyncComponents(syncable::ModelType model_type,
- SyncableService* settings_service,
- ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD3(CreatePasswordSyncComponents,
- SyncComponents(
- ProfileSyncService* profile_sync_service,
- PasswordStore* password_store,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD2(CreatePreferenceSyncComponents,
- SyncComponents(ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD2(CreateSessionSyncComponents,
- SyncComponents(ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD2(CreateThemeSyncComponents,
- SyncComponents(ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD3(CreateTypedUrlSyncComponents,
- SyncComponents(
- ProfileSyncService* profile_sync_service,
- history::HistoryBackend* history_backend,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD2(CreateSearchEngineSyncComponents,
- SyncComponents(
- ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
- MOCK_METHOD2(CreateAppNotificationSyncComponents,
- SyncComponents(
- ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler));
-
- private:
- SyncComponents MakeSyncComponents();
-
- scoped_ptr<browser_sync::AssociatorInterface> model_associator_;
- scoped_ptr<browser_sync::ChangeProcessor> change_processor_;
-};
-
-#endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_MOCK_H__
« no previous file with comments | « chrome/browser/sync/profile_sync_factory_impl_unittest.cc ('k') | chrome/browser/sync/profile_sync_factory_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698