Roll src/third_party/WebKit f298044:aa8346d (svn 202628:202629)
[chromium-blink-merge.git] / components / sync_driver / shared_change_processor_ref.h
blob2924a05b00bc7c6988581f071901ef64ac01bd40
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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_H_REF_H_
6 #define COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_H_REF_H_
8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h"
10 #include "components/sync_driver/shared_change_processor.h"
11 #include "sync/api/sync_change_processor.h"
12 #include "sync/api/sync_error_factory.h"
14 namespace sync_driver {
16 // A syncer::SyncChangeProcessor stub for interacting with a refcounted
17 // SharedChangeProcessor.
18 class SharedChangeProcessorRef : public syncer::SyncChangeProcessor,
19 public syncer::SyncErrorFactory {
20 public:
21 SharedChangeProcessorRef(
22 const scoped_refptr<SharedChangeProcessor>&
23 change_processor);
24 ~SharedChangeProcessorRef() override;
26 // syncer::SyncChangeProcessor implementation.
27 syncer::SyncError ProcessSyncChanges(
28 const tracked_objects::Location& from_here,
29 const syncer::SyncChangeList& change_list) override;
30 syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override;
31 syncer::SyncError UpdateDataTypeContext(
32 syncer::ModelType type,
33 syncer::SyncChangeProcessor::ContextRefreshStatus refresh_status,
34 const std::string& context) override;
36 // syncer::SyncErrorFactory implementation.
37 syncer::SyncError CreateAndUploadError(
38 const tracked_objects::Location& from_here,
39 const std::string& message) override;
41 // Default copy and assign welcome (and safe due to refcounted-ness).
43 private:
44 scoped_refptr<SharedChangeProcessor> change_processor_;
47 } // namespace sync_driver
49 #endif // COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_H_REF_H_