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

Unified Diff: chrome/browser/android/omnibox/autocomplete_controller_android.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/android/omnibox/autocomplete_controller_android.h
diff --git a/chrome/browser/android/omnibox/autocomplete_controller_android.h b/chrome/browser/android/omnibox/autocomplete_controller_android.h
index 25e935797e32785abd6e07af4d8e8b5ca1bba4ef..f3ee478f6287f1f3e74636af760eed1bdf23fcbb 100644
--- a/chrome/browser/android/omnibox/autocomplete_controller_android.h
+++ b/chrome/browser/android/omnibox/autocomplete_controller_android.h
@@ -75,7 +75,7 @@ class AutocompleteControllerAndroid : public AutocompleteControllerDelegate,
jstring query);
// KeyedService:
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
class Factory : public BrowserContextKeyedServiceFactory {
public:
@@ -87,7 +87,7 @@ class AutocompleteControllerAndroid : public AutocompleteControllerDelegate,
protected:
virtual content::BrowserContext* GetBrowserContextToUse(
- content::BrowserContext* context) const OVERRIDE;
+ content::BrowserContext* context) const override;
private:
friend struct DefaultSingletonTraits<Factory>;
@@ -97,7 +97,7 @@ class AutocompleteControllerAndroid : public AutocompleteControllerDelegate,
// BrowserContextKeyedServiceFactory
virtual KeyedService* BuildServiceInstanceFor(
- content::BrowserContext* profile) const OVERRIDE;
+ content::BrowserContext* profile) const override;
};
private:
@@ -105,7 +105,7 @@ class AutocompleteControllerAndroid : public AutocompleteControllerDelegate,
void InitJNI(JNIEnv* env, jobject obj);
// AutocompleteControllerDelegate implementation.
- virtual void OnResultChanged(bool default_match_changed) OVERRIDE;
+ virtual void OnResultChanged(bool default_match_changed) override;
// Notifies the Java AutocompleteController that suggestions were received
// based on the text the user typed in last.

Powered by Google App Engine
This is Rietveld 408576698