| 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/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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 160 |
| 161 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, | 161 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, |
| 162 bool use_local_state) { | 162 bool use_local_state) { |
| 163 NOTIMPLEMENTED(); | 163 NOTIMPLEMENTED(); |
| 164 } | 164 } |
| 165 | 165 |
| 166 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { | 166 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { |
| 167 NOTIMPLEMENTED(); | 167 NOTIMPLEMENTED(); |
| 168 } | 168 } |
| 169 | 169 |
| 170 content::WebContents* ShellDelegateMus::GetWebContents() { |
| 171 NOTIMPLEMENTED(); |
| 172 return nullptr; |
| 173 } |
| 174 |
| 170 } // namespace ash | 175 } // namespace ash |
| OLD | NEW |