OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_VIEWS_IME_INPUT_METHOD_BRIDGE_H_ | 5 #ifndef UI_VIEWS_IME_INPUT_METHOD_BRIDGE_H_ |
6 #define UI_VIEWS_IME_INPUT_METHOD_BRIDGE_H_ | 6 #define UI_VIEWS_IME_INPUT_METHOD_BRIDGE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "ui/base/ime/text_input_client.h" | 12 #include "ui/base/ime/text_input_client.h" |
13 #include "ui/gfx/rect.h" | 13 #include "ui/gfx/geometry/rect.h" |
14 #include "ui/views/ime/input_method_base.h" | 14 #include "ui/views/ime/input_method_base.h" |
15 | 15 |
16 namespace ui { | 16 namespace ui { |
17 class InputMethod; | 17 class InputMethod; |
18 } // namespace ui | 18 } // namespace ui |
19 | 19 |
20 namespace views { | 20 namespace views { |
21 | 21 |
22 class View; | 22 class View; |
23 | 23 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 scoped_ptr<HostObserver> host_observer_; | 100 scoped_ptr<HostObserver> host_observer_; |
101 | 101 |
102 const bool shared_input_method_; | 102 const bool shared_input_method_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(InputMethodBridge); | 104 DISALLOW_COPY_AND_ASSIGN(InputMethodBridge); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace views | 107 } // namespace views |
108 | 108 |
109 #endif // UI_VIEWS_IME_INPUT_METHOD_BRIDGE_H_ | 109 #endif // UI_VIEWS_IME_INPUT_METHOD_BRIDGE_H_ |
OLD | NEW |