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

Side by Side Diff: ash/test/test_shell_delegate.cc

Issue 18163006: Add persisted preference for projection touch HUD (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months 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 | Annotate | Revision Log
OLDNEW
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/test/test_shell_delegate.h" 5 #include "ash/test/test_shell_delegate.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "ash/caps_lock_delegate_stub.h" 9 #include "ash/caps_lock_delegate_stub.h"
10 #include "ash/host/root_window_host_factory.h" 10 #include "ash/host/root_window_host_factory.h"
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 } 213 }
214 214
215 RootWindowHostFactory* TestShellDelegate::CreateRootWindowHostFactory() { 215 RootWindowHostFactory* TestShellDelegate::CreateRootWindowHostFactory() {
216 return RootWindowHostFactory::Create(); 216 return RootWindowHostFactory::Create();
217 } 217 }
218 218
219 base::string16 TestShellDelegate::GetProductName() const { 219 base::string16 TestShellDelegate::GetProductName() const {
220 return base::string16(); 220 return base::string16();
221 } 221 }
222 222
223 bool TestShellDelegate::IsTouchHudProjectionEnabled() const {
224 return false;
225 }
226
227 void TestShellDelegate::ToggleTouchHudProjection() {
228 }
229
223 TestSessionStateDelegate* TestShellDelegate::test_session_state_delegate() { 230 TestSessionStateDelegate* TestShellDelegate::test_session_state_delegate() {
224 return test_session_state_delegate_; 231 return test_session_state_delegate_;
225 } 232 }
226 233
227 } // namespace test 234 } // namespace test
228 } // namespace ash 235 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698