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

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

Issue 1657593007: Implement chrome.input.ime.setComposition/commitText API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use Xxx::Results::Create(). Created 4 years, 10 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_chromeos.h
diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api_chromeos.h b/chrome/browser/extensions/api/input_ime/input_ime_api_chromeos.h
index ef85fa493193c8fd03f0fa14ca7761b7ce0f3b35..bd6f97238a4b1e8eeacf5aff9c45ac7c4a6970a5 100644
--- a/chrome/browser/extensions/api/input_ime/input_ime_api_chromeos.h
+++ b/chrome/browser/extensions/api/input_ime/input_ime_api_chromeos.h
@@ -21,18 +21,6 @@ class InputMethodEngine;
namespace extensions {
-class InputImeSetCompositionFunction : public SyncExtensionFunction {
- public:
- DECLARE_EXTENSION_FUNCTION("input.ime.setComposition",
- INPUT_IME_SETCOMPOSITION)
-
- protected:
- ~InputImeSetCompositionFunction() override {}
-
- // ExtensionFunction:
- bool RunSync() override;
-};
-
class InputImeClearCompositionFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("input.ime.clearComposition",
@@ -45,17 +33,6 @@ class InputImeClearCompositionFunction : public SyncExtensionFunction {
bool RunSync() override;
};
-class InputImeCommitTextFunction : public SyncExtensionFunction {
- public:
- DECLARE_EXTENSION_FUNCTION("input.ime.commitText", INPUT_IME_COMMITTEXT)
-
- protected:
- ~InputImeCommitTextFunction() override {}
-
- // ExtensionFunction:
- bool RunSync() override;
-};
-
class InputImeSetCandidateWindowPropertiesFunction
: public SyncExtensionFunction {
public:

Powered by Google App Engine
This is Rietveld 408576698