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

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

Issue 8619007: Revert "Move a bunch of ChromeOS APIs out of chrome/browser/extensions." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 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_CHROMEOS_EXTENSIONS_INPUT_IME_EXTENSION_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_IME_EXTENSION_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
11 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "chrome/browser/chromeos/input_method/input_method_engine.h" 13 #include "chrome/browser/chromeos/input_method/input_method_engine.h"
14 #include "chrome/common/extensions/extension.h" 14 #include "chrome/common/extensions/extension.h"
15 15
16 #include <map> 16 #include <map>
17 #include <string> 17 #include <string>
18 #include <vector> 18 #include <vector>
19 19
20 class Profile; 20 class Profile;
21 21
22 namespace chromeos { 22 namespace chromeos {
23 class InputMethodEngine; 23 class InputMethodEngine;
24 class ImeObserver; 24 class ImeObserver;
25 } 25 }
26 26
27 class InputImeExtensionEventRouter { 27 class ExtensionInputImeEventRouter {
28 public: 28 public:
29 static InputImeExtensionEventRouter* 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 chromeos::InputMethodEngine* GetEngine(const std::string& extension_id, 35 chromeos::InputMethodEngine* GetEngine(const std::string& extension_id,
36 const std::string& engine_id); 36 const std::string& engine_id);
37 chromeos::InputMethodEngine* GetActiveEngine(const std::string& extension_id); 37 chromeos::InputMethodEngine* GetActiveEngine(const std::string& extension_id);
38 38
39 39
40 // Called when a key event was handled. 40 // Called when a key event was handled.
41 void OnEventHandled(const std::string& extension_id, 41 void OnEventHandled(const std::string& extension_id,
42 const std::string& request_id, 42 const std::string& request_id,
43 bool handled); 43 bool handled);
44 44
45 std::string AddRequest(const std::string& engine_id, 45 std::string AddRequest(const std::string& engine_id,
46 chromeos::input_method::KeyEventHandle* key_data); 46 chromeos::input_method::KeyEventHandle* key_data);
47 47
48 private: 48 private:
49 friend struct DefaultSingletonTraits<InputImeExtensionEventRouter>; 49 friend struct DefaultSingletonTraits<ExtensionInputImeEventRouter>;
50 typedef std::map<std::string, std::pair<std::string, 50 typedef std::map<std::string, std::pair<std::string,
51 chromeos::input_method::KeyEventHandle*> > RequestMap; 51 chromeos::input_method::KeyEventHandle*> > RequestMap;
52 52
53 InputImeExtensionEventRouter(); 53 ExtensionInputImeEventRouter();
54 ~InputImeExtensionEventRouter(); 54 ~ExtensionInputImeEventRouter();
55 55
56 std::map<std::string, std::map<std::string, chromeos::InputMethodEngine*> > 56 std::map<std::string, std::map<std::string, chromeos::InputMethodEngine*> >
57 engines_; 57 engines_;
58 std::map<std::string, std::map<std::string, chromeos::ImeObserver*> > 58 std::map<std::string, std::map<std::string, chromeos::ImeObserver*> >
59 observers_; 59 observers_;
60 60
61 unsigned int next_request_id_; 61 unsigned int next_request_id_;
62 RequestMap request_map_; 62 RequestMap request_map_;
63 63
64 DISALLOW_COPY_AND_ASSIGN(InputImeExtensionEventRouter); 64 DISALLOW_COPY_AND_ASSIGN(ExtensionInputImeEventRouter);
65 }; 65 };
66 66
67 class SetCompositionFunction : public SyncExtensionFunction { 67 class SetCompositionFunction : public SyncExtensionFunction {
68 public: 68 public:
69 virtual bool RunImpl() OVERRIDE; 69 virtual bool RunImpl() OVERRIDE;
70 DECLARE_EXTENSION_FUNCTION_NAME( 70 DECLARE_EXTENSION_FUNCTION_NAME(
71 "experimental.input.ime.setComposition"); 71 "experimental.input.ime.setComposition");
72 }; 72 };
73 73
74 class ClearCompositionFunction : public SyncExtensionFunction { 74 class ClearCompositionFunction : public SyncExtensionFunction {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 DECLARE_EXTENSION_FUNCTION_NAME( 123 DECLARE_EXTENSION_FUNCTION_NAME(
124 "experimental.input.ime.updateMenuItems"); 124 "experimental.input.ime.updateMenuItems");
125 }; 125 };
126 126
127 class InputEventHandled : public AsyncExtensionFunction { 127 class InputEventHandled : public AsyncExtensionFunction {
128 public: 128 public:
129 virtual bool RunImpl() OVERRIDE; 129 virtual bool RunImpl() OVERRIDE;
130 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ime.eventHandled"); 130 DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ime.eventHandled");
131 }; 131 };
132 132
133 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_INPUT_IME_EXTENSION_API_H_ 133 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698