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

Unified Diff: chrome/browser/extensions/extension_input_ime_api.h

Issue 8558013: Add API tests for all input.ime functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fixes Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_input_ime_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_input_ime_api.h
diff --git a/chrome/browser/extensions/extension_input_ime_api.h b/chrome/browser/extensions/extension_input_ime_api.h
index 32ecd04ef8d1c33d130ab117c1fe642a46c6512f..eea38cad2475a2fe9d36856bacc42fcc5668a986 100644
--- a/chrome/browser/extensions/extension_input_ime_api.h
+++ b/chrome/browser/extensions/extension_input_ime_api.h
@@ -64,35 +64,35 @@ class ExtensionInputImeEventRouter {
DISALLOW_COPY_AND_ASSIGN(ExtensionInputImeEventRouter);
};
-class SetCompositionFunction : public AsyncExtensionFunction {
+class SetCompositionFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME(
"experimental.input.ime.setComposition");
};
-class ClearCompositionFunction : public AsyncExtensionFunction {
+class ClearCompositionFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME(
"experimental.input.ime.clearComposition");
};
-class CommitTextFunction : public AsyncExtensionFunction {
+class CommitTextFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME(
"experimental.input.ime.commitText");
};
-class SetCandidateWindowPropertiesFunction : public AsyncExtensionFunction {
+class SetCandidateWindowPropertiesFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME(
"experimental.input.ime.setCandidateWindowProperties");
};
-class SetCandidatesFunction : public AsyncExtensionFunction {
+class SetCandidatesFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME(
@@ -103,7 +103,7 @@ class SetCandidatesFunction : public AsyncExtensionFunction {
std::vector<chromeos::InputMethodEngine::Candidate>* output);
};
-class SetCursorPositionFunction : public AsyncExtensionFunction {
+class SetCursorPositionFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
DECLARE_EXTENSION_FUNCTION_NAME(
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_input_ime_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698