| 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(
|
|
|