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

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

Issue 12212048: Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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.cc
===================================================================
--- chrome/browser/sync/glue/history_model_worker.cc (revision 181040)
+++ chrome/browser/sync/glue/history_model_worker.cc (working copy)
@@ -24,7 +24,7 @@
: work_(work), done_(done), error_(error) {}
virtual bool RunOnDBThread(history::HistoryBackend* backend,
- history::HistoryDatabase* db) {
+ history::HistoryDatabase* db) OVERRIDE {
*error_ = work_.Run();
done_->Signal();
return true;
@@ -32,7 +32,7 @@
// Since the DoWorkAndWaitUntilDone() is syncronous, we don't need to run any
// code asynchronously on the main thread after completion.
- virtual void DoneRunOnMainThread() {}
+ virtual void DoneRunOnMainThread() OVERRIDE {}
protected:
virtual ~WorkerTask() {}

Powered by Google App Engine
This is Rietveld 408576698