blob: faae4bc9947ff511a60405815d4f9fb73a361942 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright 2014 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 COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_
#define COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_
#include "components/sync_driver/generic_change_processor.h"
#include "components/sync_driver/generic_change_processor_factory.h"
#include "components/sync_driver/sync_api_component_factory.h"
#include "sync/api/sync_error.h"
#include "sync/internal_api/public/base/model_type.h"
namespace sync_driver {
// A fake GenericChangeProcessor that can return arbitrary values.
class FakeGenericChangeProcessor : public GenericChangeProcessor {
public:
FakeGenericChangeProcessor(syncer::ModelType type,
SyncApiComponentFactory* sync_factory);
virtual ~FakeGenericChangeProcessor();
// Setters for GenericChangeProcessor implementation results.
void set_sync_model_has_user_created_nodes(bool has_nodes);
void set_sync_model_has_user_created_nodes_success(bool success);
// GenericChangeProcessor implementations.
virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
const syncer::SyncChangeList& change_list) OVERRIDE;
virtual syncer::SyncError GetAllSyncDataReturnError(
syncer::SyncDataList* data) const OVERRIDE;
virtual bool GetDataTypeContext(std::string* context) const OVERRIDE;
virtual int GetSyncCount() OVERRIDE;
virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) OVERRIDE;
virtual bool CryptoReadyIfNecessary() OVERRIDE;
private:
bool sync_model_has_user_created_nodes_;
bool sync_model_has_user_created_nodes_success_;
};
// Define a factory for FakeGenericChangeProcessor for convenience.
class FakeGenericChangeProcessorFactory : public GenericChangeProcessorFactory {
public:
explicit FakeGenericChangeProcessorFactory(
scoped_ptr<FakeGenericChangeProcessor> processor);
virtual ~FakeGenericChangeProcessorFactory();
virtual scoped_ptr<GenericChangeProcessor> CreateGenericChangeProcessor(
syncer::ModelType type,
syncer::UserShare* user_share,
DataTypeErrorHandler* error_handler,
const base::WeakPtr<syncer::SyncableService>& local_service,
const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
SyncApiComponentFactory* sync_factory) OVERRIDE;
private:
scoped_ptr<FakeGenericChangeProcessor> processor_;
DISALLOW_COPY_AND_ASSIGN(FakeGenericChangeProcessorFactory);
};
} // namespace sync_driver
#endif // COMPONENTS_SYNC_DRIVER_FAKE_GENERIC_CHANGE_PROCESSOR_H_
|