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

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

Issue 676593004: Adds experimental flag --enable-experimental-ime-features. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revised per comment. 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 c7d45e5f3f8b628619acaaafc8f03d5b7830bbd6..5f5db0e0e7ba8a2e4a8ca7390f46b9b5a237849d 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.h
+++ b/chrome/browser/chromeos/extensions/input_method_api.h
@@ -17,6 +17,21 @@ class ExtensionInputMethodEventRouter;
namespace extensions {
+// Implements the inputMethodPrivate.getConfig method.
+class GetConfigFunction : public UIThreadExtensionFunction {
Yuki 2014/10/23 07:05:43 I'm worrying about the class name. It's extension
Shu Chen 2014/10/23 07:19:05 Done.
+ public:
+ GetConfigFunction() {}
+
+ protected:
+ virtual ~GetConfigFunction() {}
+
+ virtual ResponseAction Run() override;
+
+ private:
+ DECLARE_EXTENSION_FUNCTION("inputMethodPrivate.getConfig",
+ INPUTMETHODPRIVATE_GETCONFIG)
+};
Yuki 2014/10/23 07:05:43 Better to have DISALLOW_COPY_AND_ASSIGN just in ca
Shu Chen 2014/10/23 07:19:05 Done.
+
// Implements the inputMethodPrivate.getCurrentInputMethod method.
class GetCurrentInputMethodFunction : public UIThreadExtensionFunction {
public:

Powered by Google App Engine
This is Rietveld 408576698