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

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

Issue 639103003: Support invisible underline for IME composition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit. 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 unified diff | Download patch
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_INTERFACE_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 enum MouseButtonEvent { 57 enum MouseButtonEvent {
58 MOUSE_BUTTON_LEFT, 58 MOUSE_BUTTON_LEFT,
59 MOUSE_BUTTON_RIGHT, 59 MOUSE_BUTTON_RIGHT,
60 MOUSE_BUTTON_MIDDLE, 60 MOUSE_BUTTON_MIDDLE,
61 }; 61 };
62 62
63 enum SegmentStyle { 63 enum SegmentStyle {
64 SEGMENT_STYLE_UNDERLINE, 64 SEGMENT_STYLE_UNDERLINE,
65 SEGMENT_STYLE_DOUBLE_UNDERLINE, 65 SEGMENT_STYLE_DOUBLE_UNDERLINE,
66 SEGMENT_STYLE_NO_UNDERLINE,
66 }; 67 };
67 68
68 enum CandidateWindowPosition { 69 enum CandidateWindowPosition {
69 WINDOW_POS_CURSOR, 70 WINDOW_POS_CURSOR,
70 WINDOW_POS_COMPOSITTION, 71 WINDOW_POS_COMPOSITTION,
71 }; 72 };
72 73
73 struct MenuItem { 74 struct MenuItem {
74 MenuItem(); 75 MenuItem();
75 virtual ~MenuItem(); 76 virtual ~MenuItem();
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 size_t number_of_chars, 242 size_t number_of_chars,
242 std::string* error) = 0; 243 std::string* error) = 0;
243 244
244 // Hides the input view window (from API call). 245 // Hides the input view window (from API call).
245 virtual void HideInputView() = 0; 246 virtual void HideInputView() = 0;
246 }; 247 };
247 248
248 } // namespace chromeos 249 } // namespace chromeos
249 250
250 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ 251 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_engine.cc ('k') | chrome/browser/extensions/api/input_ime/input_ime_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698