| 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 #include "athena/main/public/athena_launcher.h" | 5 #include "athena/main/public/athena_launcher.h" |
| 6 | 6 |
| 7 #include "athena/activity/public/activity_factory.h" | 7 #include "athena/activity/public/activity_factory.h" |
| 8 #include "athena/activity/public/activity_manager.h" | 8 #include "athena/activity/public/activity_manager.h" |
| 9 #include "athena/content/public/app_registry.h" | 9 #include "athena/content/public/app_registry.h" |
| 10 #include "athena/content/public/content_activity_factory_creator.h" | 10 #include "athena/content/public/content_activity_factory_creator.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "content/public/common/content_switches.h" | 30 #include "content/public/common/content_switches.h" |
| 31 #include "ui/app_list/app_list_switches.h" | 31 #include "ui/app_list/app_list_switches.h" |
| 32 #include "ui/aura/window_property.h" | 32 #include "ui/aura/window_property.h" |
| 33 #include "ui/aura/window_tree_host.h" | 33 #include "ui/aura/window_tree_host.h" |
| 34 #include "ui/keyboard/keyboard_controller.h" | 34 #include "ui/keyboard/keyboard_controller.h" |
| 35 #include "ui/keyboard/keyboard_controller_observer.h" | 35 #include "ui/keyboard/keyboard_controller_observer.h" |
| 36 #include "ui/native_theme/native_theme_switches.h" | 36 #include "ui/native_theme/native_theme_switches.h" |
| 37 #include "ui/wm/core/visibility_controller.h" | 37 #include "ui/wm/core/visibility_controller.h" |
| 38 | 38 |
| 39 #if defined(USE_X11) | 39 #if defined(USE_X11) |
| 40 #include "ui/events/x/touch_factory_x11.h" | 40 #include "ui/events/devices/x11/touch_factory_x11.h" |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 namespace athena { | 43 namespace athena { |
| 44 struct AthenaEnvState; | 44 struct AthenaEnvState; |
| 45 } | 45 } |
| 46 | 46 |
| 47 DECLARE_WINDOW_PROPERTY_TYPE(athena::AthenaEnvState*); | 47 DECLARE_WINDOW_PROPERTY_TYPE(athena::AthenaEnvState*); |
| 48 | 48 |
| 49 namespace athena { | 49 namespace athena { |
| 50 | 50 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 athena::SystemUI::Shutdown(); | 174 athena::SystemUI::Shutdown(); |
| 175 athena::WindowManager::Shutdown(); | 175 athena::WindowManager::Shutdown(); |
| 176 athena::ScreenManager::Shutdown(); | 176 athena::ScreenManager::Shutdown(); |
| 177 athena::InputManager::Shutdown(); | 177 athena::InputManager::Shutdown(); |
| 178 athena::AthenaEnv::Shutdown(); | 178 athena::AthenaEnv::Shutdown(); |
| 179 | 179 |
| 180 ShutdownAthenaViewsDelegate(); | 180 ShutdownAthenaViewsDelegate(); |
| 181 } | 181 } |
| 182 | 182 |
| 183 } // namespace athena | 183 } // namespace athena |
| OLD | NEW |