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_BASE_IME_INPUT_METHOD_IBUS_H_ | 5 #ifndef UI_BASE_IME_INPUT_METHOD_IBUS_H_ |
6 #define UI_BASE_IME_INPUT_METHOD_IBUS_H_ | 6 #define UI_BASE_IME_INPUT_METHOD_IBUS_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "ui/base/ime/character_composer.h" | 15 #include "ui/base/ime/chromeos/character_composer.h" |
16 #include "ui/base/ime/chromeos/ibus_bridge.h" | 16 #include "ui/base/ime/chromeos/ibus_bridge.h" |
17 #include "ui/base/ime/composition_text.h" | 17 #include "ui/base/ime/composition_text.h" |
18 #include "ui/base/ime/input_method_base.h" | 18 #include "ui/base/ime/input_method_base.h" |
19 | 19 |
20 namespace dbus { | 20 namespace dbus { |
21 class ObjectPath; | 21 class ObjectPath; |
22 } | 22 } |
23 namespace chromeos { | 23 namespace chromeos { |
24 namespace ibus { | 24 namespace ibus { |
25 class IBusText; | 25 class IBusText; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 | 161 |
162 // Used for making callbacks. | 162 // Used for making callbacks. |
163 base::WeakPtrFactory<InputMethodIBus> weak_ptr_factory_; | 163 base::WeakPtrFactory<InputMethodIBus> weak_ptr_factory_; |
164 | 164 |
165 DISALLOW_COPY_AND_ASSIGN(InputMethodIBus); | 165 DISALLOW_COPY_AND_ASSIGN(InputMethodIBus); |
166 }; | 166 }; |
167 | 167 |
168 } // namespace ui | 168 } // namespace ui |
169 | 169 |
170 #endif // UI_BASE_IME_INPUT_METHOD_IBUS_H_ | 170 #endif // UI_BASE_IME_INPUT_METHOD_IBUS_H_ |
OLD | NEW |