Chromium Code Reviews| Index: ash/mus/shell_delegate_mus.cc |
| diff --git a/ash/mus/shell_delegate_mus.cc b/ash/mus/shell_delegate_mus.cc |
| index 3e2dc1c655e8adbe6e0b1441519f06a0e04cf2ff..054100e6e6ab174db846414294f5d82e90cc4559 100644 |
| --- a/ash/mus/shell_delegate_mus.cc |
| +++ b/ash/mus/shell_delegate_mus.cc |
| @@ -231,4 +231,18 @@ gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { |
| return gfx::Image(); |
| } |
| +bool ShellDelegateMus::IsTouchscreenEnabledInPrefs(bool use_local_state) const { |
| + NOTIMPLEMENTED(); |
|
Daniel Erat
2016/12/03 00:08:44
just to double-check, are these going to be implem
Qiang(Joe) Xu
2016/12/03 01:02:44
I think yes. AFAIK, chromeos UI will move to mus-a
|
| + return true; |
| +} |
| + |
| +void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, |
| + bool use_local_state) { |
| + NOTIMPLEMENTED(); |
| +} |
| + |
| +void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { |
| + NOTIMPLEMENTED(); |
| +} |
| + |
| } // namespace ash |