| Index: sync/internal_api/sync_context_proxy_impl.h
|
| diff --git a/sync/internal_api/sync_context_proxy_impl.h b/sync/internal_api/sync_context_proxy_impl.h
|
| index 09ec8b382af54eb3456a47dc543439533b7959b7..2bd6ba6ac370150290a09110e5627c7f08f68e0b 100644
|
| --- a/sync/internal_api/sync_context_proxy_impl.h
|
| +++ b/sync/internal_api/sync_context_proxy_impl.h
|
| @@ -28,7 +28,7 @@ class SYNC_EXPORT_PRIVATE SyncContextProxyImpl : public SyncContextProxy {
|
| SyncContextProxyImpl(
|
| const scoped_refptr<base::SequencedTaskRunner>& sync_task_runner,
|
| const base::WeakPtr<SyncContext>& sync_context);
|
| - virtual ~SyncContextProxyImpl();
|
| + ~SyncContextProxyImpl() override;
|
|
|
| // Attempts to connect a non-blocking type to the sync context.
|
| //
|
| @@ -37,16 +37,16 @@ class SYNC_EXPORT_PRIVATE SyncContextProxyImpl : public SyncContextProxy {
|
| // unable to distinguish a slow success from failure.
|
| //
|
| // Must be called from the thread where the data type lives.
|
| - virtual void ConnectTypeToSync(
|
| + void ConnectTypeToSync(
|
| syncer::ModelType type,
|
| const DataTypeState& data_type_state,
|
| const UpdateResponseDataList& pending_updates,
|
| const base::WeakPtr<ModelTypeSyncProxyImpl>& sync_proxy_impl) override;
|
|
|
| // Disables syncing for the given type on the sync thread.
|
| - virtual void Disconnect(syncer::ModelType type) override;
|
| + void Disconnect(syncer::ModelType type) override;
|
|
|
| - virtual scoped_ptr<SyncContextProxy> Clone() const override;
|
| + scoped_ptr<SyncContextProxy> Clone() const override;
|
|
|
| private:
|
| // A SequencedTaskRunner representing the thread where the SyncContext lives.
|
|
|