blob: ec2ff2c8e1ed11d3de20ae02ca01408431f27e54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2010 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 CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_MOCK_H__
#define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_MOCK_H__
#include "base/scoped_ptr.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "chrome/browser/sync/profile_sync_factory.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace browser_sync {
class AssociatorInterface;
class ChangeProcessor;
}
class ProfileSyncFactoryMock : public ProfileSyncFactory {
public:
ProfileSyncFactoryMock() {}
ProfileSyncFactoryMock(
browser_sync::AssociatorInterface* bookmark_model_associator,
browser_sync::ChangeProcessor* bookmark_change_processor);
MOCK_METHOD0(CreateProfileSyncService,
ProfileSyncService*(void));
MOCK_METHOD1(CreateBookmarkSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service));
MOCK_METHOD1(CreatePreferenceSyncComponents,
SyncComponents(ProfileSyncService* profile_sync_service));
private:
SyncComponents MakeBookmarkSyncComponents();
scoped_ptr<browser_sync::AssociatorInterface> bookmark_model_associator_;
scoped_ptr<browser_sync::ChangeProcessor> bookmark_change_processor_;
};
#endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_MOCK_H__
|