Fix build break
[chromium-blink-merge.git] / chrome / browser / sync / glue / model_associator_mock.h
blob1f5a6e7e960b7ee4b45e7433cf7d33ff435dee1a
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__
6 #define CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__
8 #include "base/location.h"
9 #include "chrome/browser/sync/glue/model_associator.h"
10 #include "sync/api/sync_error.h"
11 #include "testing/gmock/include/gmock/gmock.h"
13 namespace browser_sync {
15 ACTION_P(SetSyncError, type) {
16 arg0->Reset(FROM_HERE, "test", type);
19 class ModelAssociatorMock : public AssociatorInterface {
20 public:
21 ModelAssociatorMock();
22 virtual ~ModelAssociatorMock();
24 MOCK_METHOD2(AssociateModels,
25 syncer::SyncError(syncer::SyncMergeResult*,
26 syncer::SyncMergeResult*));
27 MOCK_METHOD0(DisassociateModels, syncer::SyncError());
28 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes));
29 MOCK_METHOD0(AbortAssociation, void());
30 MOCK_METHOD0(CryptoReadyIfNecessary, bool());
33 } // namespace browser_sync
35 #endif // CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__