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

Unified Diff: components/sync_driver/shared_change_processor_ref.h

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: components/sync_driver/shared_change_processor_ref.h
diff --git a/components/sync_driver/shared_change_processor_ref.h b/components/sync_driver/shared_change_processor_ref.h
deleted file mode 100644
index 638c4b70360ad618cf8d8dd7a8c9e4d55af56582..0000000000000000000000000000000000000000
--- a/components/sync_driver/shared_change_processor_ref.h
+++ /dev/null
@@ -1,51 +0,0 @@
-// 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_SHARED_CHANGE_PROCESSOR_REF_H_
-#define COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_
-
-#include <string>
-
-#include "base/compiler_specific.h"
-#include "base/memory/ref_counted.h"
-#include "components/sync/api/sync_change_processor.h"
-#include "components/sync/api/sync_error_factory.h"
-#include "components/sync_driver/shared_change_processor.h"
-
-namespace sync_driver {
-
-// A syncer::SyncChangeProcessor stub for interacting with a refcounted
-// SharedChangeProcessor.
-class SharedChangeProcessorRef : public syncer::SyncChangeProcessor,
- public syncer::SyncErrorFactory {
- public:
- SharedChangeProcessorRef(
- const scoped_refptr<SharedChangeProcessor>&
- change_processor);
- ~SharedChangeProcessorRef() override;
-
- // syncer::SyncChangeProcessor implementation.
- syncer::SyncError ProcessSyncChanges(
- const tracked_objects::Location& from_here,
- const syncer::SyncChangeList& change_list) override;
- syncer::SyncDataList GetAllSyncData(syncer::ModelType type) const override;
- syncer::SyncError UpdateDataTypeContext(
- syncer::ModelType type,
- syncer::SyncChangeProcessor::ContextRefreshStatus refresh_status,
- const std::string& context) override;
-
- // syncer::SyncErrorFactory implementation.
- syncer::SyncError CreateAndUploadError(
- const tracked_objects::Location& from_here,
- const std::string& message) override;
-
- // Default copy and assign welcome (and safe due to refcounted-ness).
-
- private:
- scoped_refptr<SharedChangeProcessor> change_processor_;
-};
-
-} // namespace sync_driver
-
-#endif // COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_REF_H_
« no previous file with comments | « components/sync_driver/shared_change_processor.cc ('k') | components/sync_driver/shared_change_processor_ref.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698