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

Unified Diff: components/sync_driver/frontend_data_type_controller_mock.h

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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: components/sync_driver/frontend_data_type_controller_mock.h
diff --git a/components/sync_driver/frontend_data_type_controller_mock.h b/components/sync_driver/frontend_data_type_controller_mock.h
deleted file mode 100644
index f2c00f7b65cafa634cc9ee194996f247a4e1b9a7..0000000000000000000000000000000000000000
--- a/components/sync_driver/frontend_data_type_controller_mock.h
+++ /dev/null
@@ -1,59 +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 COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_MOCK_H__
-#define COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_MOCK_H__
-
-#include <string>
-
-#include "components/sync/api/sync_error.h"
-#include "components/sync_driver/frontend_data_type_controller.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace browser_sync {
-
-class FrontendDataTypeControllerMock : public FrontendDataTypeController {
- public:
- FrontendDataTypeControllerMock();
-
- // DataTypeController mocks.
- MOCK_METHOD1(StartAssociating,
- void(const StartCallback& start_callback));
- MOCK_METHOD1(LoadModels, void(const ModelLoadCallback& model_load_callback));
-
- MOCK_METHOD0(Stop, void());
- MOCK_METHOD0(enabled, bool());
- MOCK_CONST_METHOD0(type, syncer::ModelType());
- MOCK_CONST_METHOD0(name, std::string());
- MOCK_CONST_METHOD0(model_safe_group, syncer::ModelSafeGroup());
- MOCK_CONST_METHOD0(state, State());
- MOCK_METHOD2(OnUnrecoverableError, void(const tracked_objects::Location&,
- const std::string&));
-
- // FrontendDataTypeController mocks.
- MOCK_METHOD0(StartModels, bool());
- MOCK_METHOD0(Associate, void());
- MOCK_METHOD0(CreateSyncComponents, void());
- MOCK_METHOD2(StartFailed, void(ConfigureResult result,
- const syncer::SyncError& error));
- MOCK_METHOD1(FinishStart, void(ConfigureResult result));
- MOCK_METHOD0(CleanUpState, void());
- MOCK_CONST_METHOD0(model_associator, sync_driver::AssociatorInterface*());
- MOCK_METHOD1(set_model_associator,
- void(sync_driver::AssociatorInterface* associator));
- MOCK_CONST_METHOD0(change_processor, sync_driver::ChangeProcessor*());
- MOCK_METHOD1(set_change_processor,
- void(sync_driver::ChangeProcessor* processor));
- MOCK_METHOD2(RecordUnrecoverableError, void(const tracked_objects::Location&,
- const std::string&));
- MOCK_METHOD1(RecordAssociationTime, void(base::TimeDelta time));
- MOCK_METHOD1(RecordStartFailure, void(ConfigureResult result));
-
- protected:
- virtual ~FrontendDataTypeControllerMock();
-};
-
-} // namespace browser_sync
-
-#endif // COMPONENTS_SYNC_DRIVER_FRONTEND_DATA_TYPE_CONTROLLER_MOCK_H__
« no previous file with comments | « components/sync_driver/frontend_data_type_controller.cc ('k') | components/sync_driver/frontend_data_type_controller_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698