Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: ash/mus/shell_delegate_mus.cc

Issue 2533373002: Enabled/disable touch screen in TabletPowerButtonController (Closed)
Patch Set: based on comments from derat@ Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698