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 UI_MOJO_INIT_UI_INIT_H_ | 5 #ifndef UI_MOJO_INIT_UI_INIT_H_ |
6 #define UI_MOJO_INIT_UI_INIT_H_ | 6 #define UI_MOJO_INIT_UI_INIT_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | |
11 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "build/build_config.h" |
13 | 14 |
14 namespace gfx { | 15 namespace gfx { |
15 class Display; | 16 class Display; |
16 class Screen; | 17 class Screen; |
17 } | 18 } |
18 | 19 |
19 namespace ui { | 20 namespace ui { |
20 class GestureConfiguration; | 21 class GestureConfiguration; |
21 | 22 |
22 namespace mojo { | 23 namespace mojo { |
(...skipping 13 matching lines...) Expand all Loading... |
36 scoped_ptr<GestureConfigurationMojo> gesture_configuration_; | 37 scoped_ptr<GestureConfigurationMojo> gesture_configuration_; |
37 #endif | 38 #endif |
38 | 39 |
39 DISALLOW_COPY_AND_ASSIGN(UIInit); | 40 DISALLOW_COPY_AND_ASSIGN(UIInit); |
40 }; | 41 }; |
41 | 42 |
42 } // namespace mojo | 43 } // namespace mojo |
43 } // namespace ui | 44 } // namespace ui |
44 | 45 |
45 #endif // UI_MOJO_INIT_UI_INIT_H_ | 46 #endif // UI_MOJO_INIT_UI_INIT_H_ |
OLD | NEW |