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

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

Issue 666733003: Standardize usage of virtual/override/final in chrome/browser/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
Index: chrome/browser/sync/glue/ui_model_worker.h
diff --git a/chrome/browser/sync/glue/ui_model_worker.h b/chrome/browser/sync/glue/ui_model_worker.h
index b6841c375e697cb538fd35b6c49dfce58b58e921..cd0d1843598101af44fa5f109f700fb4e4a70d5e 100644
--- a/chrome/browser/sync/glue/ui_model_worker.h
+++ b/chrome/browser/sync/glue/ui_model_worker.h
@@ -22,15 +22,15 @@ class UIModelWorker : public syncer::ModelSafeWorker {
explicit UIModelWorker(syncer::WorkerLoopDestructionObserver* observer);
// syncer::ModelSafeWorker implementation. Called on syncapi SyncerThread.
- virtual void RegisterForLoopDestruction() override;
- virtual syncer::ModelSafeGroup GetModelSafeGroup() override;
+ void RegisterForLoopDestruction() override;
+ syncer::ModelSafeGroup GetModelSafeGroup() override;
protected:
- virtual syncer::SyncerError DoWorkAndWaitUntilDoneImpl(
+ syncer::SyncerError DoWorkAndWaitUntilDoneImpl(
const syncer::WorkCallback& work) override;
private:
- virtual ~UIModelWorker();
+ ~UIModelWorker() override;
DISALLOW_COPY_AND_ASSIGN(UIModelWorker);
};
« no previous file with comments | « chrome/browser/sync/glue/typed_url_model_associator.h ('k') | chrome/browser/sync/profile_sync_auth_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698