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

Side by Side Diff: chrome/browser/chromeos/input_method/input_method_engine.h

Issue 1528483002: Add chrome.input.ime.activate and chrome.input.ime.deactivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_engine_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <map> 11 #include <map>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 #include "base/time/time.h" 14 #include "base/time/time.h"
15 #include "chrome/browser/input_method/input_method_engine_base.h" 15 #include "chrome/browser/ui/input_method/input_method_engine_base.h"
16 #include "ui/base/ime/chromeos/input_method_descriptor.h" 16 #include "ui/base/ime/chromeos/input_method_descriptor.h"
17 #include "ui/base/ime/ime_engine_handler_interface.h" 17 #include "ui/base/ime/ime_engine_handler_interface.h"
18 #include "url/gurl.h" 18 #include "url/gurl.h"
19 19
20 class Profile; 20 class Profile;
21 21
22 namespace ui { 22 namespace ui {
23 class CandidateWindow; 23 class CandidateWindow;
24 struct CompositionText; 24 struct CompositionText;
25 class IMEEngineHandlerInterface; 25 class IMEEngineHandlerInterface;
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 // Mapping of candidate index to candidate id. 163 // Mapping of candidate index to candidate id.
164 std::vector<int> candidate_ids_; 164 std::vector<int> candidate_ids_;
165 165
166 // Mapping of candidate id to index. 166 // Mapping of candidate id to index.
167 std::map<int, int> candidate_indexes_; 167 std::map<int, int> candidate_indexes_;
168 }; 168 };
169 169
170 } // namespace chromeos 170 } // namespace chromeos
171 171
172 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_ 172 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/input_method_engine_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698