OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AURA_ENV_H_ | 5 #ifndef UI_AURA_ENV_H_ |
6 #define UI_AURA_ENV_H_ | 6 #define UI_AURA_ENV_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
11 #include "ui/aura/aura_export.h" | 11 #include "ui/aura/aura_export.h" |
12 #include "ui/base/events/event_handler.h" | 12 #include "ui/base/events/event_handler.h" |
13 #include "ui/base/events/event_target.h" | 13 #include "ui/base/events/event_target.h" |
14 #include "ui/gfx/point.h" | 14 #include "ui/gfx/point.h" |
15 | 15 |
16 #if defined(USE_X11) | 16 #if defined(USE_X11) |
17 #include "ui/aura/device_list_updater_aurax11.h" | 17 #include "ui/aura/device_list_updater_aurax11.h" |
18 #endif | 18 #endif |
19 | 19 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 #if defined(USE_X11) | 97 #if defined(USE_X11) |
98 DeviceListUpdaterAuraX11 device_list_updater_aurax11_; | 98 DeviceListUpdaterAuraX11 device_list_updater_aurax11_; |
99 #endif | 99 #endif |
100 | 100 |
101 DISALLOW_COPY_AND_ASSIGN(Env); | 101 DISALLOW_COPY_AND_ASSIGN(Env); |
102 }; | 102 }; |
103 | 103 |
104 } // namespace aura | 104 } // namespace aura |
105 | 105 |
106 #endif // UI_AURA_ENV_H_ | 106 #endif // UI_AURA_ENV_H_ |
OLD | NEW |