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" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 bool ShellDelegateMus::IsMultiProfilesEnabled() const { | 64 bool ShellDelegateMus::IsMultiProfilesEnabled() const { |
65 NOTIMPLEMENTED(); | 65 NOTIMPLEMENTED(); |
66 return false; | 66 return false; |
67 } | 67 } |
68 | 68 |
69 bool ShellDelegateMus::IsRunningInForcedAppMode() const { | 69 bool ShellDelegateMus::IsRunningInForcedAppMode() const { |
70 NOTIMPLEMENTED(); | 70 NOTIMPLEMENTED(); |
71 return false; | 71 return false; |
72 } | 72 } |
73 | 73 |
74 bool ShellDelegateMus::CanShowWindowForUser(WmWindow* window) const { | 74 bool ShellDelegateMus::CanShowWindowForUser(aura::Window* window) const { |
75 NOTIMPLEMENTED(); | 75 NOTIMPLEMENTED(); |
76 return true; | 76 return true; |
77 } | 77 } |
78 | 78 |
79 bool ShellDelegateMus::IsForceMaximizeOnFirstRun() const { | 79 bool ShellDelegateMus::IsForceMaximizeOnFirstRun() const { |
80 NOTIMPLEMENTED(); | 80 NOTIMPLEMENTED(); |
81 return false; | 81 return false; |
82 } | 82 } |
83 | 83 |
84 void ShellDelegateMus::PreInit() { | 84 void ShellDelegateMus::PreInit() { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, | 171 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, |
172 bool use_local_state) { | 172 bool use_local_state) { |
173 NOTIMPLEMENTED(); | 173 NOTIMPLEMENTED(); |
174 } | 174 } |
175 | 175 |
176 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { | 176 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { |
177 NOTIMPLEMENTED(); | 177 NOTIMPLEMENTED(); |
178 } | 178 } |
179 | 179 |
180 } // namespace ash | 180 } // namespace ash |
OLD | NEW |