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

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

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/history_model_worker.h
diff --git a/chrome/browser/sync/glue/history_model_worker.h b/chrome/browser/sync/glue/history_model_worker.h
index 2488a67233b393cd68ae11a322b92f9d613320dd..241fc32dd3398cf2abcfbdc65c17a32105fc6c24 100644
--- a/chrome/browser/sync/glue/history_model_worker.h
+++ b/chrome/browser/sync/glue/history_model_worker.h
@@ -29,8 +29,8 @@ class HistoryModelWorker : public syncer::ModelSafeWorker {
syncer::WorkerLoopDestructionObserver* observer);
// syncer::ModelSafeWorker implementation. Called on syncapi SyncerThread.
- virtual void RegisterForLoopDestruction() OVERRIDE;
- virtual syncer::ModelSafeGroup GetModelSafeGroup() OVERRIDE;
+ virtual void RegisterForLoopDestruction() override;
+ virtual syncer::ModelSafeGroup GetModelSafeGroup() override;
// Called on history DB thread to register HistoryModelWorker to observe
// destruction of history backend loop.
@@ -38,7 +38,7 @@ class HistoryModelWorker : public syncer::ModelSafeWorker {
protected:
virtual syncer::SyncerError DoWorkAndWaitUntilDoneImpl(
- const syncer::WorkCallback& work) OVERRIDE;
+ const syncer::WorkCallback& work) override;
private:
virtual ~HistoryModelWorker();

Powered by Google App Engine
This is Rietveld 408576698