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

Side by Side Diff: components/sync/driver/model_associator_mock.h

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 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
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_MODEL_ASSOCIATOR_MOCK_H__ 5 #ifndef COMPONENTS_SYNC_DRIVER_MODEL_ASSOCIATOR_MOCK_H__
6 #define COMPONENTS_SYNC_DRIVER_MODEL_ASSOCIATOR_MOCK_H__ 6 #define COMPONENTS_SYNC_DRIVER_MODEL_ASSOCIATOR_MOCK_H__
7 7
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "components/sync/api/sync_error.h" 9 #include "components/sync/api/sync_error.h"
10 #include "components/sync/driver/model_associator.h" 10 #include "components/sync/driver/model_associator.h"
11 #include "testing/gmock/include/gmock/gmock.h" 11 #include "testing/gmock/include/gmock/gmock.h"
12 12
13 namespace syncer { 13 namespace sync_driver {
14 14
15 ACTION_P(SetSyncError, type) { 15 ACTION_P(SetSyncError, type) {
16 arg0->Reset(FROM_HERE, "test", type); 16 arg0->Reset(FROM_HERE, "test", type);
17 } 17 }
18 18
19 class ModelAssociatorMock : public AssociatorInterface { 19 class ModelAssociatorMock : public AssociatorInterface {
20 public: 20 public:
21 ModelAssociatorMock(); 21 ModelAssociatorMock();
22 virtual ~ModelAssociatorMock(); 22 virtual ~ModelAssociatorMock();
23 23
24 MOCK_METHOD2(AssociateModels, SyncError(SyncMergeResult*, SyncMergeResult*)); 24 MOCK_METHOD2(AssociateModels,
25 MOCK_METHOD0(DisassociateModels, SyncError()); 25 syncer::SyncError(syncer::SyncMergeResult*,
26 syncer::SyncMergeResult*));
27 MOCK_METHOD0(DisassociateModels, syncer::SyncError());
26 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes)); 28 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes));
27 MOCK_METHOD0(AbortAssociation, void()); 29 MOCK_METHOD0(AbortAssociation, void());
28 MOCK_METHOD0(CryptoReadyIfNecessary, bool()); 30 MOCK_METHOD0(CryptoReadyIfNecessary, bool());
29 }; 31 };
30 32
31 } // namespace syncer 33 } // namespace sync_driver
32 34
33 #endif // COMPONENTS_SYNC_DRIVER_MODEL_ASSOCIATOR_MOCK_H__ 35 #endif // COMPONENTS_SYNC_DRIVER_MODEL_ASSOCIATOR_MOCK_H__
OLDNEW
« no previous file with comments | « components/sync/driver/model_associator.h ('k') | components/sync/driver/model_associator_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698