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

Unified Diff: sync/test/engine/injectable_sync_context_proxy.h

Issue 642023004: Standardize usage of virtual/override/final in sync/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « sync/test/engine/fake_sync_scheduler.h ('k') | sync/test/engine/mock_connection_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/engine/injectable_sync_context_proxy.h
diff --git a/sync/test/engine/injectable_sync_context_proxy.h b/sync/test/engine/injectable_sync_context_proxy.h
index 29bb8c264dbd1ba0129ccf16d2ae209611a1e5ab..3b9782041b53886bfe19aced2375569d79a2c2bc 100644
--- a/sync/test/engine/injectable_sync_context_proxy.h
+++ b/sync/test/engine/injectable_sync_context_proxy.h
@@ -20,16 +20,15 @@ class ModelTypeSyncWorker;
class InjectableSyncContextProxy : public syncer::SyncContextProxy {
public:
explicit InjectableSyncContextProxy(ModelTypeSyncWorker* worker);
- virtual ~InjectableSyncContextProxy();
-
- virtual void ConnectTypeToSync(
- syncer::ModelType type,
- const DataTypeState& data_type_state,
- const UpdateResponseDataList& pending_updates,
- const base::WeakPtr<syncer::ModelTypeSyncProxyImpl>& type_sync_proxy)
- override;
- virtual void Disconnect(syncer::ModelType type) override;
- virtual scoped_ptr<SyncContextProxy> Clone() const override;
+ ~InjectableSyncContextProxy() override;
+
+ void ConnectTypeToSync(syncer::ModelType type,
+ const DataTypeState& data_type_state,
+ const UpdateResponseDataList& pending_updates,
+ const base::WeakPtr<syncer::ModelTypeSyncProxyImpl>&
+ type_sync_proxy) override;
+ void Disconnect(syncer::ModelType type) override;
+ scoped_ptr<SyncContextProxy> Clone() const override;
ModelTypeSyncWorker* GetWorker();
« no previous file with comments | « sync/test/engine/fake_sync_scheduler.h ('k') | sync/test/engine/mock_connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698