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

Unified Diff: chrome/browser/metrics/thread_watcher.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/metrics/thread_watcher.h
diff --git a/chrome/browser/metrics/thread_watcher.h b/chrome/browser/metrics/thread_watcher.h
index 64d9058ebb82da6a1ac60eb51df27627fe6cfa6c..588a36213e4a081d10db28abca9c28daa868e508 100644
--- a/chrome/browser/metrics/thread_watcher.h
+++ b/chrome/browser/metrics/thread_watcher.h
@@ -434,7 +434,7 @@ class ThreadWatcherObserver : public content::NotificationObserver {
// is called.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
// The singleton of this class.
static ThreadWatcherObserver* g_thread_watcher_observer_;
@@ -477,8 +477,8 @@ class WatchDogThread : public base::Thread {
int64 delay_ms);
protected:
- virtual void Init();
- virtual void CleanUp();
+ virtual void Init() OVERRIDE;
+ virtual void CleanUp() OVERRIDE;
private:
static bool PostTaskHelper(

Powered by Google App Engine
This is Rietveld 408576698