diff options
| author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-21 16:51:06 +0000 |
|---|---|---|
| committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-21 16:51:06 +0000 |
| commit | 0d5c08e06dc7c5e0f2895134cdd9c34c2402551c (patch) | |
| tree | e3d11f0e103415425ba1d00468ecf38458bda2b0 /chrome/browser/metrics/thread_watcher.h | |
| parent | 1a80b85a916168de948d92abf355df4e20529080 (diff) | |
| download | chromium_src-0d5c08e06dc7c5e0f2895134cdd9c34c2402551c.zip chromium_src-0d5c08e06dc7c5e0f2895134cdd9c34c2402551c.tar.gz chromium_src-0d5c08e06dc7c5e0f2895134cdd9c34c2402551c.tar.bz2 | |
Add OVERRIDE to chrome/browser/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8612007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110939 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/metrics/thread_watcher.h')
| -rw-r--r-- | chrome/browser/metrics/thread_watcher.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/metrics/thread_watcher.h b/chrome/browser/metrics/thread_watcher.h index 64d9058..588a362 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( |
