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

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

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
« no previous file with comments | « chrome/browser/sync/glue/history_model_worker.h ('k') | chrome/browser/sync/glue/invalidation_adapter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/history_model_worker.cc
diff --git a/chrome/browser/sync/glue/history_model_worker.cc b/chrome/browser/sync/glue/history_model_worker.cc
index 179637b33f52b62c7cb68457cd80bf6555348708..8241bdfeaac3e47423ae59411a8f17868ef4e531 100644
--- a/chrome/browser/sync/glue/history_model_worker.cc
+++ b/chrome/browser/sync/glue/history_model_worker.cc
@@ -23,7 +23,7 @@ class WorkerTask : public history::HistoryDBTask {
: work_(work), done_(done), error_(error) {}
virtual bool RunOnDBThread(history::HistoryBackend* backend,
- history::HistoryDatabase* db) OVERRIDE {
+ history::HistoryDatabase* db) override {
*error_ = work_.Run();
done_->Signal();
return true;
@@ -31,7 +31,7 @@ class WorkerTask : public history::HistoryDBTask {
// Since the DoWorkAndWaitUntilDone() is synchronous, we don't need to run
// any code asynchronously on the main thread after completion.
- virtual void DoneRunOnMainThread() OVERRIDE {}
+ virtual void DoneRunOnMainThread() override {}
protected:
virtual ~WorkerTask() {}
@@ -47,12 +47,12 @@ class AddDBThreadObserverTask : public history::HistoryDBTask {
: register_callback_(register_callback) {}
virtual bool RunOnDBThread(history::HistoryBackend* backend,
- history::HistoryDatabase* db) OVERRIDE {
+ history::HistoryDatabase* db) override {
register_callback_.Run();
return true;
}
- virtual void DoneRunOnMainThread() OVERRIDE {}
+ virtual void DoneRunOnMainThread() override {}
private:
virtual ~AddDBThreadObserverTask() {}
« no previous file with comments | « chrome/browser/sync/glue/history_model_worker.h ('k') | chrome/browser/sync/glue/invalidation_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698