| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extension_function.h" | 9 #include "chrome/browser/extensions/extension_function.h" |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 class ExtensionInputImeEventRouter { | 27 class ExtensionInputImeEventRouter { |
| 28 public: | 28 public: |
| 29 static ExtensionInputImeEventRouter* GetInstance(); | 29 static ExtensionInputImeEventRouter* GetInstance(); |
| 30 void Init(); | 30 void Init(); |
| 31 | 31 |
| 32 bool RegisterIme(Profile* profile, | 32 bool RegisterIme(Profile* profile, |
| 33 const std::string& extension_id, | 33 const std::string& extension_id, |
| 34 const Extension::InputComponentInfo& component); | 34 const Extension::InputComponentInfo& component); |
| 35 void UnregisterAllImes(Profile* profile, const std::string& extension_id); |
| 35 chromeos::InputMethodEngine* GetEngine(const std::string& extension_id, | 36 chromeos::InputMethodEngine* GetEngine(const std::string& extension_id, |
| 36 const std::string& engine_id); | 37 const std::string& engine_id); |
| 37 chromeos::InputMethodEngine* GetActiveEngine(const std::string& extension_id); | 38 chromeos::InputMethodEngine* GetActiveEngine(const std::string& extension_id); |
| 38 | 39 |
| 39 | 40 |
| 40 // Called when a key event was handled. | 41 // Called when a key event was handled. |
| 41 void OnEventHandled(const std::string& extension_id, | 42 void OnEventHandled(const std::string& extension_id, |
| 42 const std::string& request_id, | 43 const std::string& request_id, |
| 43 bool handled); | 44 bool handled); |
| 44 | 45 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "experimental.input.ime.updateMenuItems"); | 125 "experimental.input.ime.updateMenuItems"); |
| 125 }; | 126 }; |
| 126 | 127 |
| 127 class InputEventHandled : public AsyncExtensionFunction { | 128 class InputEventHandled : public AsyncExtensionFunction { |
| 128 public: | 129 public: |
| 129 virtual bool RunImpl() OVERRIDE; | 130 virtual bool RunImpl() OVERRIDE; |
| 130 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ime.eventHandled"); | 131 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ime.eventHandled"); |
| 131 }; | 132 }; |
| 132 | 133 |
| 133 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_ | 134 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_ |
| OLD | NEW |