| 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 #include "ash/shell.h" | 5 #include "ash/shell.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 #include "ash/system/chromeos/power/power_event_observer.h" | 128 #include "ash/system/chromeos/power/power_event_observer.h" |
| 129 #include "ash/system/chromeos/power/video_activity_notifier.h" | 129 #include "ash/system/chromeos/power/video_activity_notifier.h" |
| 130 #include "ash/touch/touch_transformer_controller.h" | 130 #include "ash/touch/touch_transformer_controller.h" |
| 131 #include "ash/virtual_keyboard_controller.h" | 131 #include "ash/virtual_keyboard_controller.h" |
| 132 #include "base/bind_helpers.h" | 132 #include "base/bind_helpers.h" |
| 133 #include "base/sys_info.h" | 133 #include "base/sys_info.h" |
| 134 #include "chromeos/audio/audio_a11y_controller.h" | 134 #include "chromeos/audio/audio_a11y_controller.h" |
| 135 #include "chromeos/chromeos_switches.h" | 135 #include "chromeos/chromeos_switches.h" |
| 136 #include "chromeos/dbus/dbus_thread_manager.h" | 136 #include "chromeos/dbus/dbus_thread_manager.h" |
| 137 #include "ui/chromeos/user_activity_power_manager_notifier.h" | 137 #include "ui/chromeos/user_activity_power_manager_notifier.h" |
| 138 #include "ui/display/chromeos/display_configurator.h" | 138 #include "ui/display/manager/chromeos/display_configurator.h" |
| 139 | 139 |
| 140 #if defined(USE_X11) | 140 #if defined(USE_X11) |
| 141 #include "ui/display/chromeos/x11/native_display_delegate_x11.h" | 141 #include "ui/display/manager/chromeos/x11/native_display_delegate_x11.h" |
| 142 #endif | 142 #endif |
| 143 | 143 |
| 144 #if defined(USE_OZONE) | 144 #if defined(USE_OZONE) |
| 145 #include "ui/display/types/native_display_delegate.h" | 145 #include "ui/display/types/native_display_delegate.h" |
| 146 #include "ui/ozone/public/ozone_platform.h" | 146 #include "ui/ozone/public/ozone_platform.h" |
| 147 #endif | 147 #endif |
| 148 #endif // defined(OS_CHROMEOS) | 148 #endif // defined(OS_CHROMEOS) |
| 149 | 149 |
| 150 namespace ash { | 150 namespace ash { |
| 151 | 151 |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const { | 904 std::unique_ptr<ui::EventTargetIterator> Shell::GetChildIterator() const { |
| 905 return std::unique_ptr<ui::EventTargetIterator>(); | 905 return std::unique_ptr<ui::EventTargetIterator>(); |
| 906 } | 906 } |
| 907 | 907 |
| 908 ui::EventTargeter* Shell::GetEventTargeter() { | 908 ui::EventTargeter* Shell::GetEventTargeter() { |
| 909 NOTREACHED(); | 909 NOTREACHED(); |
| 910 return nullptr; | 910 return nullptr; |
| 911 } | 911 } |
| 912 | 912 |
| 913 } // namespace ash | 913 } // namespace ash |
| OLD | NEW |