OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 ASH_TEST_TEST_KEYBOARD_UI_H_ | 5 #ifndef ASH_TEST_TEST_KEYBOARD_UI_H_ |
6 #define ASH_TEST_TEST_KEYBOARD_UI_H_ | 6 #define ASH_TEST_TEST_KEYBOARD_UI_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
9 #include "ui/aura/test/test_window_delegate.h" | 10 #include "ui/aura/test/test_window_delegate.h" |
10 #include "ui/keyboard/keyboard_ui.h" | 11 #include "ui/keyboard/keyboard_ui.h" |
11 | 12 |
12 namespace aura { | 13 namespace aura { |
13 class Window; | 14 class Window; |
14 } // namespace aura | 15 } // namespace aura |
15 | 16 |
16 namespace ash { | 17 namespace ash { |
17 | 18 |
(...skipping 16 matching lines...) Expand all Loading... |
34 void ResetInsets() override; | 35 void ResetInsets() override; |
35 | 36 |
36 aura::test::TestWindowDelegate delegate_; | 37 aura::test::TestWindowDelegate delegate_; |
37 scoped_ptr<aura::Window> keyboard_; | 38 scoped_ptr<aura::Window> keyboard_; |
38 DISALLOW_COPY_AND_ASSIGN(TestKeyboardUI); | 39 DISALLOW_COPY_AND_ASSIGN(TestKeyboardUI); |
39 }; | 40 }; |
40 | 41 |
41 } // namespace ash | 42 } // namespace ash |
42 | 43 |
43 #endif // ASH_TEST_TEST_KEYBOARD_UI_H_ | 44 #endif // ASH_TEST_TEST_KEYBOARD_UI_H_ |
OLD | NEW |