| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CHROMEOS_H_ | 5 #ifndef UI_BASE_IME_INPUT_METHOD_CHROMEOS_H_ |
| 6 #define UI_BASE_IME_INPUT_METHOD_CHROMEOS_H_ | 6 #define UI_BASE_IME_INPUT_METHOD_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/callback_forward.h" |
| 14 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" | 16 #include "base/macros.h" |
| 16 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 17 #include "ui/base/ime/chromeos/character_composer.h" | 18 #include "ui/base/ime/chromeos/character_composer.h" |
| 18 #include "ui/base/ime/composition_text.h" | 19 #include "ui/base/ime/composition_text.h" |
| 19 #include "ui/base/ime/ime_input_context_handler_interface.h" | 20 #include "ui/base/ime/ime_input_context_handler_interface.h" |
| 20 #include "ui/base/ime/input_method_base.h" | 21 #include "ui/base/ime/input_method_base.h" |
| 21 | 22 |
| 22 namespace ui { | 23 namespace ui { |
| 23 | 24 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 144 |
| 144 // Used for making callbacks. | 145 // Used for making callbacks. |
| 145 base::WeakPtrFactory<InputMethodChromeOS> weak_ptr_factory_; | 146 base::WeakPtrFactory<InputMethodChromeOS> weak_ptr_factory_; |
| 146 | 147 |
| 147 DISALLOW_COPY_AND_ASSIGN(InputMethodChromeOS); | 148 DISALLOW_COPY_AND_ASSIGN(InputMethodChromeOS); |
| 148 }; | 149 }; |
| 149 | 150 |
| 150 } // namespace ui | 151 } // namespace ui |
| 151 | 152 |
| 152 #endif // UI_BASE_IME_INPUT_METHOD_CHROMEOS_H_ | 153 #endif // UI_BASE_IME_INPUT_METHOD_CHROMEOS_H_ |
| OLD | NEW |