| 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/shell_delegate_impl.h" | 5 #include "ash/shell/shell_delegate_impl.h" |
| 6 | 6 |
| 7 #include "ash/accessibility_delegate.h" | 7 #include "ash/accessibility_delegate.h" |
| 8 #include "ash/default_accessibility_delegate.h" | 8 #include "ash/default_accessibility_delegate.h" |
| 9 #include "ash/default_wallpaper_delegate.h" | 9 #include "ash/default_wallpaper_delegate.h" |
| 10 #include "ash/gpu_support_stub.h" | 10 #include "ash/gpu_support_stub.h" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 } | 95 } |
| 96 | 96 |
| 97 bool ShellDelegateImpl::IsMultiProfilesEnabled() const { | 97 bool ShellDelegateImpl::IsMultiProfilesEnabled() const { |
| 98 return false; | 98 return false; |
| 99 } | 99 } |
| 100 | 100 |
| 101 bool ShellDelegateImpl::IsRunningInForcedAppMode() const { | 101 bool ShellDelegateImpl::IsRunningInForcedAppMode() const { |
| 102 return false; | 102 return false; |
| 103 } | 103 } |
| 104 | 104 |
| 105 bool ShellDelegateImpl::CanShowWindowForUser(WmWindow* window) const { | 105 bool ShellDelegateImpl::CanShowWindowForUser(aura::Window* window) const { |
| 106 return true; | 106 return true; |
| 107 } | 107 } |
| 108 | 108 |
| 109 bool ShellDelegateImpl::IsForceMaximizeOnFirstRun() const { | 109 bool ShellDelegateImpl::IsForceMaximizeOnFirstRun() const { |
| 110 return false; | 110 return false; |
| 111 } | 111 } |
| 112 | 112 |
| 113 void ShellDelegateImpl::PreInit() {} | 113 void ShellDelegateImpl::PreInit() {} |
| 114 | 114 |
| 115 void ShellDelegateImpl::PreShutdown() {} | 115 void ShellDelegateImpl::PreShutdown() {} |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 return true; | 176 return true; |
| 177 } | 177 } |
| 178 | 178 |
| 179 void ShellDelegateImpl::SetTouchscreenEnabledInPrefs(bool enabled, | 179 void ShellDelegateImpl::SetTouchscreenEnabledInPrefs(bool enabled, |
| 180 bool use_local_state) {} | 180 bool use_local_state) {} |
| 181 | 181 |
| 182 void ShellDelegateImpl::UpdateTouchscreenStatusFromPrefs() {} | 182 void ShellDelegateImpl::UpdateTouchscreenStatusFromPrefs() {} |
| 183 | 183 |
| 184 } // namespace shell | 184 } // namespace shell |
| 185 } // namespace ash | 185 } // namespace ash |
| OLD | NEW |