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

Side by Side Diff: chrome/browser/extensions/extension_input_ime_api.h

Issue 8761018: Start the IME Daemon when adding an extension IME (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pre-submit Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_manager.cc ('k') | chrome/browser/extensions/extension_input_ime_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698