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

Side by Side Diff: chrome/browser/sync/glue/model_associator_mock.h

Issue 6413036: Another big out-of-lining of test code. Hits a lot of gmock objects (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: lei comments Created 9 years, 10 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 (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__ 5 #ifndef CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__
6 #define CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__ 6 #define CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/sync/glue/model_associator.h" 9 #include "chrome/browser/sync/glue/model_associator.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 browser_sync {
13 13
14 class ModelAssociatorMock : public AssociatorInterface { 14 class ModelAssociatorMock : public AssociatorInterface {
15 public: 15 public:
16 ModelAssociatorMock();
17 virtual ~ModelAssociatorMock();
18
16 MOCK_METHOD0(AssociateModels, bool()); 19 MOCK_METHOD0(AssociateModels, bool());
17 MOCK_METHOD0(DisassociateModels, bool()); 20 MOCK_METHOD0(DisassociateModels, bool());
18 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes)); 21 MOCK_METHOD1(SyncModelHasUserCreatedNodes, bool(bool* has_nodes));
19 MOCK_METHOD0(AbortAssociation, void()); 22 MOCK_METHOD0(AbortAssociation, void());
20 }; 23 };
21 24
22 } // namespace browser_sync 25 } // namespace browser_sync
23 26
24 #endif // CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__ 27 #endif // CHROME_BROWSER_SYNC_GLUE_MODEL_ASSOCIATOR_MOCK_H__
OLDNEW
« no previous file with comments | « chrome/browser/policy/mock_device_management_backend.cc ('k') | chrome/browser/sync/glue/model_associator_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698