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

Side by Side Diff: components/sync_driver/data_type_controller_mock.h

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_SYNC_DRIVER_DATA_TYPE_CONTROLLER_MOCK_H__ 5 #ifndef COMPONENTS_SYNC_DRIVER_DATA_TYPE_CONTROLLER_MOCK_H__
6 #define COMPONENTS_SYNC_DRIVER_DATA_TYPE_CONTROLLER_MOCK_H__ 6 #define COMPONENTS_SYNC_DRIVER_DATA_TYPE_CONTROLLER_MOCK_H__
7 7
8 #include "components/sync_driver/data_type_controller.h" 8 #include "components/sync_driver/data_type_controller.h"
9 #include "sync/api/sync_error.h" 9 #include "sync/api/sync_error.h"
10 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
11 11
12 namespace browser_sync { 12 namespace sync_driver {
13 13
14 class StartCallbackMock { 14 class StartCallbackMock {
15 public: 15 public:
16 StartCallbackMock(); 16 StartCallbackMock();
17 virtual ~StartCallbackMock(); 17 virtual ~StartCallbackMock();
18 18
19 MOCK_METHOD3(Run, void(DataTypeController::StartResult result, 19 MOCK_METHOD3(Run, void(DataTypeController::StartResult result,
20 const syncer::SyncMergeResult& local_merge_result, 20 const syncer::SyncMergeResult& local_merge_result,
21 const syncer::SyncMergeResult& syncer_merge_result)); 21 const syncer::SyncMergeResult& syncer_merge_result));
22 }; 22 };
23 23
24 class ModelLoadCallbackMock { 24 class ModelLoadCallbackMock {
25 public: 25 public:
26 ModelLoadCallbackMock(); 26 ModelLoadCallbackMock();
27 virtual ~ModelLoadCallbackMock(); 27 virtual ~ModelLoadCallbackMock();
28 28
29 MOCK_METHOD2(Run, void(syncer::ModelType, syncer::SyncError)); 29 MOCK_METHOD2(Run, void(syncer::ModelType, syncer::SyncError));
30 }; 30 };
31 31
32 } // namespace browser_sync 32 } // namespace sync_driver
33 33
34 #endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_CONTROLLER_MOCK_H__ 34 #endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_CONTROLLER_MOCK_H__
OLDNEW
« no previous file with comments | « components/sync_driver/data_type_controller.cc ('k') | components/sync_driver/data_type_controller_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698