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

Unified Diff: components/sync/driver/non_ui_data_type_controller_mock.h

Issue 2549223003: [Sync] Rename NonUIDataTypeController to AsyncDirectoryTypeController (Closed)
Patch Set: Created 4 years 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/non_ui_data_type_controller_mock.h
diff --git a/components/sync/driver/non_ui_data_type_controller_mock.h b/components/sync/driver/non_ui_data_type_controller_mock.h
deleted file mode 100644
index 876bdc544bb903a5a8f21ddcfc884e30008c9fc7..0000000000000000000000000000000000000000
--- a/components/sync/driver/non_ui_data_type_controller_mock.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2014 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_NON_UI_DATA_TYPE_CONTROLLER_MOCK_H_
-#define COMPONENTS_SYNC_DRIVER_NON_UI_DATA_TYPE_CONTROLLER_MOCK_H_
-
-#include <string>
-
-#include "components/sync/driver/non_ui_data_type_controller.h"
-#include "components/sync/model/sync_error.h"
-#include "testing/gmock/include/gmock/gmock.h"
-
-namespace syncer {
-
-class NonUIDataTypeControllerMock : public NonUIDataTypeController {
- public:
- NonUIDataTypeControllerMock();
- virtual ~NonUIDataTypeControllerMock();
-
- // DataTypeController mocks.
- MOCK_METHOD1(StartAssociating, void(const StartCallback& start_callback));
- MOCK_METHOD1(LoadModels, void(const ModelLoadCallback& model_load_callback));
- MOCK_METHOD0(Stop, void());
- MOCK_CONST_METHOD0(type, ModelType());
- MOCK_CONST_METHOD0(name, std::string());
- MOCK_CONST_METHOD0(state, State());
-
- // NonUIDataTypeController mocks.
- MOCK_METHOD0(StartModels, bool());
- MOCK_METHOD0(StopModels, void());
- MOCK_METHOD2(PostTaskOnModelThread,
- bool(const tracked_objects::Location&, const base::Closure&));
- MOCK_METHOD3(StartDone,
- void(DataTypeController::ConfigureResult result,
- const SyncMergeResult& local_merge_result,
- const SyncMergeResult& syncer_merge_result));
- MOCK_METHOD1(RecordStartFailure, void(ConfigureResult result));
-};
-
-} // namespace syncer
-
-#endif // COMPONENTS_SYNC_DRIVER_NON_UI_DATA_TYPE_CONTROLLER_MOCK_H_
« no previous file with comments | « components/sync/driver/non_ui_data_type_controller.cc ('k') | components/sync/driver/non_ui_data_type_controller_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698