Chromium Code Reviews| 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/media_delegate.h" | 10 #include "ash/common/media_delegate.h" |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 224 base::string16 ShellDelegateMus::GetProductName() const { | 224 base::string16 ShellDelegateMus::GetProductName() const { |
| 225 NOTIMPLEMENTED(); | 225 NOTIMPLEMENTED(); |
| 226 return base::string16(); | 226 return base::string16(); |
| 227 } | 227 } |
| 228 | 228 |
| 229 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { | 229 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { |
| 230 NOTIMPLEMENTED(); | 230 NOTIMPLEMENTED(); |
| 231 return gfx::Image(); | 231 return gfx::Image(); |
| 232 } | 232 } |
| 233 | 233 |
| 234 bool ShellDelegateMus::IsTouchscreenEnabledInPrefs(bool use_local_state) const { | |
| 235 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
| |
| 236 return true; | |
| 237 } | |
| 238 | |
| 239 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, | |
| 240 bool use_local_state) { | |
| 241 NOTIMPLEMENTED(); | |
| 242 } | |
| 243 | |
| 244 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { | |
| 245 NOTIMPLEMENTED(); | |
| 246 } | |
| 247 | |
| 234 } // namespace ash | 248 } // namespace ash |
| OLD | NEW |