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

Unified Diff: chrome/browser/chromeos/extensions/input_method_api.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/extensions/input_method_api.h
diff --git a/chrome/browser/chromeos/extensions/input_method_api.h b/chrome/browser/chromeos/extensions/input_method_api.h
index 77f84e849e6ec2c2e5bbcf10cae8768422e8b61e..c7d45e5f3f8b628619acaaafc8f03d5b7830bbd6 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.h
+++ b/chrome/browser/chromeos/extensions/input_method_api.h
@@ -25,7 +25,7 @@ class GetCurrentInputMethodFunction : public UIThreadExtensionFunction {
protected:
virtual ~GetCurrentInputMethodFunction() {}
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
private:
DECLARE_EXTENSION_FUNCTION("inputMethodPrivate.getCurrentInputMethod",
@@ -40,7 +40,7 @@ class SetCurrentInputMethodFunction : public UIThreadExtensionFunction {
protected:
virtual ~SetCurrentInputMethodFunction() {}
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
private:
DECLARE_EXTENSION_FUNCTION("inputMethodPrivate.setCurrentInputMethod",
@@ -55,7 +55,7 @@ class GetInputMethodsFunction : public UIThreadExtensionFunction {
protected:
virtual ~GetInputMethodsFunction() {}
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
private:
DECLARE_EXTENSION_FUNCTION("inputMethodPrivate.getInputMethods",
@@ -78,11 +78,11 @@ class InputMethodAPI : public BrowserContextKeyedAPI,
static BrowserContextKeyedAPIFactory<InputMethodAPI>* GetFactoryInstance();
// BrowserContextKeyedAPI implementation.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// EventRouter::Observer implementation.
virtual void OnListenerAdded(const extensions::EventListenerInfo& details)
- OVERRIDE;
+ override;
private:
friend class BrowserContextKeyedAPIFactory<InputMethodAPI>;

Powered by Google App Engine
This is Rietveld 408576698