| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/mus/shell_delegate_mus.h" | 5 #include "ash/mus/shell_delegate_mus.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "ash/gpu_support_stub.h" | 9 #include "ash/gpu_support_stub.h" |
| 10 #include "ash/mus/accessibility_delegate_mus.h" | 10 #include "ash/mus/accessibility_delegate_mus.h" |
| 11 #include "ash/mus/context_menu_mus.h" | 11 #include "ash/mus/context_menu_mus.h" |
| 12 #include "ash/mus/shelf_delegate_mus.h" | 12 #include "ash/mus/shelf_delegate_mus.h" |
| 13 #include "ash/mus/system_tray_delegate_mus.h" | 13 #include "ash/mus/system_tray_delegate_mus.h" |
| 14 #include "ash/mus/wallpaper_delegate_mus.h" | 14 #include "ash/mus/wallpaper_delegate_mus.h" |
| 15 #include "ash/palette_delegate.h" | 15 #include "ash/palette_delegate.h" |
| 16 #include "ash/session/session_state_delegate.h" | 16 #include "ash/session/session_state_delegate.h" |
| 17 #include "ash/wm_shell.h" | |
| 18 #include "base/memory/ptr_util.h" | 17 #include "base/memory/ptr_util.h" |
| 19 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
| 20 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
| 21 #include "components/user_manager/user_info_impl.h" | 20 #include "components/user_manager/user_info_impl.h" |
| 22 #include "ui/gfx/image/image.h" | 21 #include "ui/gfx/image/image.h" |
| 23 | 22 |
| 24 namespace ash { | 23 namespace ash { |
| 25 namespace { | 24 namespace { |
| 26 | 25 |
| 27 class SessionStateDelegateStub : public SessionStateDelegate { | 26 class SessionStateDelegateStub : public SessionStateDelegate { |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, | 160 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, |
| 162 bool use_local_state) { | 161 bool use_local_state) { |
| 163 NOTIMPLEMENTED(); | 162 NOTIMPLEMENTED(); |
| 164 } | 163 } |
| 165 | 164 |
| 166 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { | 165 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { |
| 167 NOTIMPLEMENTED(); | 166 NOTIMPLEMENTED(); |
| 168 } | 167 } |
| 169 | 168 |
| 170 } // namespace ash | 169 } // namespace ash |
| OLD | NEW |