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

Unified Diff: components/omnibox/keyword_provider.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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
« no previous file with comments | « components/omnibox/base_search_provider.cc ('k') | components/omnibox/keyword_provider_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/omnibox/keyword_provider.h
diff --git a/components/omnibox/keyword_provider.h b/components/omnibox/keyword_provider.h
index aa7c44a172a2407c6dc5ecba4e02868dac0fdfa0..f0dfed2fb07c99e040cd31fb52763daa1ce35d63 100644
--- a/components/omnibox/keyword_provider.h
+++ b/components/omnibox/keyword_provider.h
@@ -94,14 +94,13 @@ class KeywordProvider : public AutocompleteProvider {
const AutocompleteInput& input);
// AutocompleteProvider:
- virtual void Start(const AutocompleteInput& input,
- bool minimal_changes) override;
- virtual void Stop(bool clear_cached_results) override;
+ void Start(const AutocompleteInput& input, bool minimal_changes) override;
+ void Stop(bool clear_cached_results) override;
private:
friend class KeywordExtensionsDelegateImpl;
- virtual ~KeywordProvider();
+ ~KeywordProvider() override;
// Extracts the keyword from |input| into |keyword|. Any remaining characters
// after the keyword are placed in |remaining_input|. Returns true if |input|
« no previous file with comments | « components/omnibox/base_search_provider.cc ('k') | components/omnibox/keyword_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698