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

Unified Diff: chrome/browser/sync/glue/shared_change_processor_ref.h

Issue 8065016: [Sync] Refactor non-frontend DTC to handle new API properly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and self review Created 9 years, 2 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: chrome/browser/sync/glue/shared_change_processor_ref.h
diff --git a/chrome/browser/sync/glue/shared_change_processor_ref.h b/chrome/browser/sync/glue/shared_change_processor_ref.h
new file mode 100644
index 0000000000000000000000000000000000000000..e4d33dda5cd4e7cd8be3a6b74fa46470ffa332ba
--- /dev/null
+++ b/chrome/browser/sync/glue/shared_change_processor_ref.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2011 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_GLUE_SHARED_CHANGE_PROCESSOR_REF_H_
+#define CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_REF_H_
+#pragma once
+
+#include "base/compiler_specific.h"
+#include "base/memory/ref_counted.h"
+#include "chrome/browser/sync/api/sync_change_processor.h"
+#include "chrome/browser/sync/glue/shared_change_processor.h"
+
+namespace browser_sync {
+
+// A SyncChangeProcessor stub for interacting with a refcounted
+// ShareedChangeProcessor.
+class SharedChangeProcessorRef : public SyncChangeProcessor {
+ public:
+ SharedChangeProcessorRef(
+ browser_sync::SharedChangeProcessor* change_processor);
akalin 2011/10/07 20:51:16 take a const ref to a scoped_refptr<>
Nicolas Zea 2011/10/07 22:05:52 Done.
+ virtual ~SharedChangeProcessorRef();
+
+ // SyncChangeProcessor implementation.
+ virtual SyncError ProcessSyncChanges(
+ const tracked_objects::Location& from_here,
+ const SyncChangeList& change_list) OVERRIDE;
+
+ // Default copy and assign welcome (and safe due to refcounted-ness).
+
+ private:
+ scoped_refptr<browser_sync::SharedChangeProcessor> change_processor_;
+};
+
+} // namespace browser_sync
+
+#endif // CHROME_BROWSER_SYNC_GLUE_SHARED_CHANGE_PROCESSOR_REF_H_

Powered by Google App Engine
This is Rietveld 408576698