Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / sync / internal_api / sync_context_proxy_impl.h
index 7f121a3..2bd6ba6 100644 (file)
@@ -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;
+      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.