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 MOJO_EXAMPLES_KEYBOARD_KEYBOARD_VIEW_H_ | 5 #ifndef EXAMPLES_KEYBOARD_KEYBOARD_VIEW_H_ |
6 #define MOJO_EXAMPLES_KEYBOARD_KEYBOARD_VIEW_H_ | 6 #define EXAMPLES_KEYBOARD_KEYBOARD_VIEW_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "ui/gfx/font_list.h" | 11 #include "ui/gfx/font_list.h" |
12 #include "ui/views/controls/button/button.h" | 12 #include "ui/views/controls/button/button.h" |
13 #include "ui/views/view.h" | 13 #include "ui/views/view.h" |
14 | 14 |
15 namespace views { | 15 namespace views { |
16 class LabelButton; | 16 class LabelButton; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 gfx::Size last_layout_size_; | 94 gfx::Size last_layout_size_; |
95 | 95 |
96 gfx::FontList button_font_; | 96 gfx::FontList button_font_; |
97 | 97 |
98 DISALLOW_COPY_AND_ASSIGN(KeyboardView); | 98 DISALLOW_COPY_AND_ASSIGN(KeyboardView); |
99 }; | 99 }; |
100 | 100 |
101 } // namespace examples | 101 } // namespace examples |
102 } // namespace mojo | 102 } // namespace mojo |
103 | 103 |
104 #endif // MOJO_EXAMPLES_KEYBOARD_KEYBOARD_VIEW_H_ | 104 #endif // EXAMPLES_KEYBOARD_KEYBOARD_VIEW_H_ |
OLD | NEW |