| 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/common/accessibility_delegate.h" | 7 #include "ash/common/accessibility_delegate.h" |
| 8 #include "ash/common/default_accessibility_delegate.h" | 8 #include "ash/common/default_accessibility_delegate.h" |
| 9 #include "ash/common/gpu_support_stub.h" | 9 #include "ash/common/gpu_support_stub.h" |
| 10 #include "ash/common/palette_delegate.h" | 10 #include "ash/common/palette_delegate.h" |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 bool ShellDelegateImpl::IsTouchscreenEnabledInPrefs( | 168 bool ShellDelegateImpl::IsTouchscreenEnabledInPrefs( |
| 169 bool use_local_state) const { | 169 bool use_local_state) const { |
| 170 return true; | 170 return true; |
| 171 } | 171 } |
| 172 | 172 |
| 173 void ShellDelegateImpl::SetTouchscreenEnabledInPrefs(bool enabled, | 173 void ShellDelegateImpl::SetTouchscreenEnabledInPrefs(bool enabled, |
| 174 bool use_local_state) {} | 174 bool use_local_state) {} |
| 175 | 175 |
| 176 void ShellDelegateImpl::UpdateTouchscreenStatusFromPrefs() {} | 176 void ShellDelegateImpl::UpdateTouchscreenStatusFromPrefs() {} |
| 177 | 177 |
| 178 content::WebContents* ShellDelegateImpl::GetWebContents() { |
| 179 NOTIMPLEMENTED(); |
| 180 return nullptr; |
| 181 } |
| 182 |
| 178 } // namespace shell | 183 } // namespace shell |
| 179 } // namespace ash | 184 } // namespace ash |
| OLD | NEW |