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

Unified Diff: chrome/browser/autocomplete/keyword_extensions_delegate_impl.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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
Index: chrome/browser/autocomplete/keyword_extensions_delegate_impl.h
diff --git a/chrome/browser/autocomplete/keyword_extensions_delegate_impl.h b/chrome/browser/autocomplete/keyword_extensions_delegate_impl.h
index 474c0205436d52ef4297a1d7899a16ff60bfbb89..f7b29ec1d93133aaf2a4b3f3345324db367d36b7 100644
--- a/chrome/browser/autocomplete/keyword_extensions_delegate_impl.h
+++ b/chrome/browser/autocomplete/keyword_extensions_delegate_impl.h
@@ -33,20 +33,20 @@ class KeywordExtensionsDelegateImpl : public KeywordExtensionsDelegate,
private:
// KeywordExtensionsDelegate:
- virtual void IncrementInputId() OVERRIDE;
- virtual bool IsEnabledExtension(const std::string& extension_id) OVERRIDE;
+ virtual void IncrementInputId() override;
+ virtual bool IsEnabledExtension(const std::string& extension_id) override;
virtual bool Start(const AutocompleteInput& input,
bool minimal_changes,
const TemplateURL* template_url,
- const base::string16& remaining_input) OVERRIDE;
+ const base::string16& remaining_input) override;
virtual void EnterExtensionKeywordMode(
- const std::string& extension_id) OVERRIDE;
- virtual void MaybeEndExtensionKeywordMode() OVERRIDE;
+ const std::string& extension_id) override;
+ virtual void MaybeEndExtensionKeywordMode() override;
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
ACMatches* matches() { return &provider_->matches_; }
void set_done(bool done) {

Powered by Google App Engine
This is Rietveld 408576698