| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 UI_KEYBOARD_KEYBOARD_CONTROLLER_H_ | 5 #ifndef UI_KEYBOARD_KEYBOARD_CONTROLLER_H_ |
| 6 #define UI_KEYBOARD_KEYBOARD_CONTROLLER_H_ | 6 #define UI_KEYBOARD_KEYBOARD_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/event_types.h" | 9 #include "base/event_types.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 12 #include "ui/aura/window_observer.h" | 12 #include "ui/aura/window_observer.h" |
| 13 #include "ui/base/ime/input_method_observer.h" | 13 #include "ui/base/ime/input_method_observer.h" |
| 14 #include "ui/base/ime/text_input_type.h" | 14 #include "ui/base/ime/text_input_type.h" |
| 15 #include "ui/gfx/rect.h" | 15 #include "ui/gfx/geometry/rect.h" |
| 16 #include "ui/keyboard/keyboard_export.h" | 16 #include "ui/keyboard/keyboard_export.h" |
| 17 #include "url/gurl.h" | 17 #include "url/gurl.h" |
| 18 | 18 |
| 19 namespace aura { | 19 namespace aura { |
| 20 class Window; | 20 class Window; |
| 21 } | 21 } |
| 22 namespace ui { | 22 namespace ui { |
| 23 class InputMethod; | 23 class InputMethod; |
| 24 class TextInputClient; | 24 class TextInputClient; |
| 25 } | 25 } |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 static KeyboardController* instance_; | 167 static KeyboardController* instance_; |
| 168 | 168 |
| 169 base::WeakPtrFactory<KeyboardController> weak_factory_; | 169 base::WeakPtrFactory<KeyboardController> weak_factory_; |
| 170 | 170 |
| 171 DISALLOW_COPY_AND_ASSIGN(KeyboardController); | 171 DISALLOW_COPY_AND_ASSIGN(KeyboardController); |
| 172 }; | 172 }; |
| 173 | 173 |
| 174 } // namespace keyboard | 174 } // namespace keyboard |
| 175 | 175 |
| 176 #endif // UI_KEYBOARD_KEYBOARD_CONTROLLER_H_ | 176 #endif // UI_KEYBOARD_KEYBOARD_CONTROLLER_H_ |
| OLD | NEW |