summaryrefslogtreecommitdiffstats
path: root/chrome/browser/spellchecker/spellcheck_host_impl.h
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-21 16:52:21 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-21 16:52:21 +0000
commit49fd7e2236c370b3affab9788fa5fc4c998729a1 (patch)
tree204eaa4196e3e9a6b173253a146b9104f0108da2 /chrome/browser/spellchecker/spellcheck_host_impl.h
parent0d5c08e06dc7c5e0f2895134cdd9c34c2402551c (diff)
downloadchromium_src-49fd7e2236c370b3affab9788fa5fc4c998729a1.zip
chromium_src-49fd7e2236c370b3affab9788fa5fc4c998729a1.tar.gz
chromium_src-49fd7e2236c370b3affab9788fa5fc4c998729a1.tar.bz2
Add OVERRIDE to chrome/browser/.
BUG=104314 TEST=no change Review URL: http://codereview.chromium.org/8614003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110940 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/spellchecker/spellcheck_host_impl.h')
-rw-r--r--chrome/browser/spellchecker/spellcheck_host_impl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/spellchecker/spellcheck_host_impl.h b/chrome/browser/spellchecker/spellcheck_host_impl.h
index 4ff371d..a4c3019 100644
--- a/chrome/browser/spellchecker/spellcheck_host_impl.h
+++ b/chrome/browser/spellchecker/spellcheck_host_impl.h
@@ -101,19 +101,19 @@ class SpellCheckHostImpl : public SpellCheckHost,
// Returns a metrics counter associated with this object,
// or null when metrics recording is disabled.
- virtual SpellCheckHostMetrics* GetMetrics() const;
+ virtual SpellCheckHostMetrics* GetMetrics() const OVERRIDE;
// Returns true if the dictionary is ready to use.
- virtual bool IsReady() const;
+ virtual bool IsReady() const OVERRIDE;
// content::URLFetcherDelegate implementation. Called when we finish
// downloading the spellcheck dictionary; saves the dictionary to |data_|.
- virtual void OnURLFetchComplete(const content::URLFetcher* source);
+ virtual void OnURLFetchComplete(const content::URLFetcher* source) OVERRIDE;
// NotificationProfile implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
// Saves |data_| to disk. Run on the file thread.
void SaveDictionaryData();