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

Unified Diff: chrome/browser/extensions/api/input_ime/input_ime_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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
Index: chrome/browser/extensions/api/input_ime/input_ime_api.h
diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api.h b/chrome/browser/extensions/api/input_ime/input_ime_api.h
index 76d785348b10109751d22167392c2b71dd41bf41..b552601044ff5aab75a4c47c5b47675d518614d1 100644
--- a/chrome/browser/extensions/api/input_ime/input_ime_api.h
+++ b/chrome/browser/extensions/api/input_ime/input_ime_api.h
@@ -83,7 +83,7 @@ class InputImeSetCompositionFunction : public SyncExtensionFunction {
virtual ~InputImeSetCompositionFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeClearCompositionFunction : public SyncExtensionFunction {
@@ -95,7 +95,7 @@ class InputImeClearCompositionFunction : public SyncExtensionFunction {
virtual ~InputImeClearCompositionFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeCommitTextFunction : public SyncExtensionFunction {
@@ -106,7 +106,7 @@ class InputImeCommitTextFunction : public SyncExtensionFunction {
virtual ~InputImeCommitTextFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeSetCandidateWindowPropertiesFunction
@@ -119,7 +119,7 @@ class InputImeSetCandidateWindowPropertiesFunction
virtual ~InputImeSetCandidateWindowPropertiesFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeSetCandidatesFunction : public SyncExtensionFunction {
@@ -130,7 +130,7 @@ class InputImeSetCandidatesFunction : public SyncExtensionFunction {
virtual ~InputImeSetCandidatesFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeSetCursorPositionFunction : public SyncExtensionFunction {
@@ -142,7 +142,7 @@ class InputImeSetCursorPositionFunction : public SyncExtensionFunction {
virtual ~InputImeSetCursorPositionFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeSetMenuItemsFunction : public SyncExtensionFunction {
@@ -153,7 +153,7 @@ class InputImeSetMenuItemsFunction : public SyncExtensionFunction {
virtual ~InputImeSetMenuItemsFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeUpdateMenuItemsFunction : public SyncExtensionFunction {
@@ -165,7 +165,7 @@ class InputImeUpdateMenuItemsFunction : public SyncExtensionFunction {
virtual ~InputImeUpdateMenuItemsFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeDeleteSurroundingTextFunction : public SyncExtensionFunction {
@@ -176,7 +176,7 @@ class InputImeDeleteSurroundingTextFunction : public SyncExtensionFunction {
virtual ~InputImeDeleteSurroundingTextFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class InputImeKeyEventHandledFunction : public AsyncExtensionFunction {
@@ -188,7 +188,7 @@ class InputImeKeyEventHandledFunction : public AsyncExtensionFunction {
virtual ~InputImeKeyEventHandledFunction() {}
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
class InputImeSendKeyEventsFunction : public AsyncExtensionFunction {
@@ -200,7 +200,7 @@ class InputImeSendKeyEventsFunction : public AsyncExtensionFunction {
virtual ~InputImeSendKeyEventsFunction() {}
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
class InputImeHideInputViewFunction : public AsyncExtensionFunction {
@@ -212,7 +212,7 @@ class InputImeHideInputViewFunction : public AsyncExtensionFunction {
virtual ~InputImeHideInputViewFunction() {}
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
class InputImeAPI : public BrowserContextKeyedAPI,
@@ -227,14 +227,14 @@ class InputImeAPI : public BrowserContextKeyedAPI,
// ExtensionRegistryObserver implementation.
virtual void OnExtensionLoaded(content::BrowserContext* browser_context,
- const Extension* extension) OVERRIDE;
+ const Extension* extension) override;
virtual void OnExtensionUnloaded(
content::BrowserContext* browser_context,
const Extension* extension,
- UnloadedExtensionInfo::Reason reason) OVERRIDE;
+ UnloadedExtensionInfo::Reason reason) override;
// EventRouter::Observer implementation.
- virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE;
+ virtual void OnListenerAdded(const EventListenerInfo& details) override;
private:
friend class BrowserContextKeyedAPIFactory<InputImeAPI>;
« no previous file with comments | « chrome/browser/extensions/api/input/input.h ('k') | chrome/browser/extensions/api/input_ime/input_ime_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698