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

Unified Diff: chrome/browser/autocomplete/keyword_provider.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/autocomplete/keyword_provider.h
diff --git a/chrome/browser/autocomplete/keyword_provider.h b/chrome/browser/autocomplete/keyword_provider.h
index 8f422ad46ddb4759b5e05e8ba89d8dd69537e79d..38673459252d3243926d68cc3a28d0e67f9adbb9 100644
--- a/chrome/browser/autocomplete/keyword_provider.h
+++ b/chrome/browser/autocomplete/keyword_provider.h
@@ -72,8 +72,9 @@ class KeywordProvider : public AutocompleteProvider,
string16* remaining_input);
// AutocompleteProvider
- virtual void Start(const AutocompleteInput& input, bool minimal_changes);
- virtual void Stop();
+ virtual void Start(const AutocompleteInput& input,
+ bool minimal_changes) OVERRIDE;
+ virtual void Stop() OVERRIDE;
private:
class ScopedEndExtensionKeywordMode;
@@ -136,7 +137,7 @@ class KeywordProvider : public AutocompleteProvider,
// content::NotificationObserver interface.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
// Model for the keywords. This is only non-null when testing, otherwise the
// TemplateURLService from the Profile is used.

Powered by Google App Engine
This is Rietveld 408576698