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

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

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bookmarks Created 6 years, 8 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 176596819b2586ca2e736e37616b79a76aa2870d..2f0d8339959533ed77bab87b3eb26b863783334d 100644
--- a/chrome/browser/extensions/api/input_ime/input_ime_api.h
+++ b/chrome/browser/extensions/api/input_ime/input_ime_api.h
@@ -87,7 +87,7 @@ class InputImeSetCompositionFunction : public SyncExtensionFunction {
virtual ~InputImeSetCompositionFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeClearCompositionFunction : public SyncExtensionFunction {
@@ -99,7 +99,7 @@ class InputImeClearCompositionFunction : public SyncExtensionFunction {
virtual ~InputImeClearCompositionFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeCommitTextFunction : public SyncExtensionFunction {
@@ -110,7 +110,7 @@ class InputImeCommitTextFunction : public SyncExtensionFunction {
virtual ~InputImeCommitTextFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeSetCandidateWindowPropertiesFunction
@@ -123,7 +123,7 @@ class InputImeSetCandidateWindowPropertiesFunction
virtual ~InputImeSetCandidateWindowPropertiesFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeSetCandidatesFunction : public SyncExtensionFunction {
@@ -134,7 +134,7 @@ class InputImeSetCandidatesFunction : public SyncExtensionFunction {
virtual ~InputImeSetCandidatesFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeSetCursorPositionFunction : public SyncExtensionFunction {
@@ -146,7 +146,7 @@ class InputImeSetCursorPositionFunction : public SyncExtensionFunction {
virtual ~InputImeSetCursorPositionFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeSetMenuItemsFunction : public SyncExtensionFunction {
@@ -157,7 +157,7 @@ class InputImeSetMenuItemsFunction : public SyncExtensionFunction {
virtual ~InputImeSetMenuItemsFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeUpdateMenuItemsFunction : public SyncExtensionFunction {
@@ -169,7 +169,7 @@ class InputImeUpdateMenuItemsFunction : public SyncExtensionFunction {
virtual ~InputImeUpdateMenuItemsFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeDeleteSurroundingTextFunction : public SyncExtensionFunction {
@@ -180,7 +180,7 @@ class InputImeDeleteSurroundingTextFunction : public SyncExtensionFunction {
virtual ~InputImeDeleteSurroundingTextFunction() {}
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class InputImeKeyEventHandledFunction : public AsyncExtensionFunction {
« no previous file with comments | « chrome/browser/extensions/api/input/input.cc ('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