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

Side by Side Diff: ash/default_accessibility_delegate.cc

Issue 240333007: wip: Second crack at implementing the touch exploration mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding a flag to disable the touch exploration mode. Created 6 years, 7 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
« no previous file with comments | « ash/ash_switches.cc ('k') | ash/root_window_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/default_accessibility_delegate.h" 5 #include "ash/default_accessibility_delegate.h"
6 6
7 #include <limits> 7 #include <limits>
8 #include "base/logging.h"
8 9
9 namespace ash { 10 namespace ash {
10 11
11 DefaultAccessibilityDelegate::DefaultAccessibilityDelegate() 12 DefaultAccessibilityDelegate::DefaultAccessibilityDelegate()
12 : spoken_feedback_enabled_(false), 13 : spoken_feedback_enabled_(false),
13 high_contrast_enabled_(false), 14 high_contrast_enabled_(false),
14 screen_magnifier_enabled_(false), 15 screen_magnifier_enabled_(false),
15 screen_magnifier_type_(kDefaultMagnifierType), 16 screen_magnifier_type_(kDefaultMagnifierType),
16 large_cursor_enabled_(false), 17 large_cursor_enabled_(false),
17 autoclick_enabled_(false), 18 autoclick_enabled_(false),
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 109
109 AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() { 110 AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() {
110 return accessibility_alert_; 111 return accessibility_alert_;
111 } 112 }
112 113
113 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { 114 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const {
114 return base::TimeDelta(); 115 return base::TimeDelta();
115 } 116 }
116 117
117 } // namespace ash 118 } // namespace ash
OLDNEW
« no previous file with comments | « ash/ash_switches.cc ('k') | ash/root_window_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698