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_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ | 5 #ifndef UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ |
6 #define UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ | 6 #define UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "ui/aura/layout_manager.h" | 9 #include "ui/aura/layout_manager.h" |
9 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
10 | 11 |
11 namespace keyboard { | 12 namespace keyboard { |
12 | 13 |
13 class KeyboardController; | 14 class KeyboardController; |
14 | 15 |
15 // LayoutManager for the virtual keyboard container. Manages a single window | 16 // LayoutManager for the virtual keyboard container. Manages a single window |
16 // (the virtual keyboard) and keeps it positioned at the bottom of the | 17 // (the virtual keyboard) and keeps it positioned at the bottom of the |
17 // owner window. | 18 // owner window. |
(...skipping 16 matching lines...) Expand all Loading... |
34 private: | 35 private: |
35 KeyboardController* controller_; | 36 KeyboardController* controller_; |
36 aura::Window* keyboard_; | 37 aura::Window* keyboard_; |
37 | 38 |
38 DISALLOW_COPY_AND_ASSIGN(KeyboardLayoutManager); | 39 DISALLOW_COPY_AND_ASSIGN(KeyboardLayoutManager); |
39 }; | 40 }; |
40 | 41 |
41 } // namespace keyboard | 42 } // namespace keyboard |
42 | 43 |
43 #endif // UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ | 44 #endif // UI_KEYBOARD_KEYBOARD_LAYOUT_MANAGER_H_ |
OLD | NEW |