OLD | NEW |
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/common/default_accessibility_delegate.h" | 5 #include "ash/common/default_accessibility_delegate.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 | 10 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 139 |
140 void DefaultAccessibilityDelegate::TriggerAccessibilityAlert( | 140 void DefaultAccessibilityDelegate::TriggerAccessibilityAlert( |
141 AccessibilityAlert alert) { | 141 AccessibilityAlert alert) { |
142 accessibility_alert_ = alert; | 142 accessibility_alert_ = alert; |
143 } | 143 } |
144 | 144 |
145 AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() { | 145 AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() { |
146 return accessibility_alert_; | 146 return accessibility_alert_; |
147 } | 147 } |
148 | 148 |
| 149 bool DefaultAccessibilityDelegate::ShouldToggleSpokenFeedbackViaTouch() { |
| 150 return false; |
| 151 } |
| 152 |
| 153 void DefaultAccessibilityDelegate::PlaySpokenFeedbackToggleCountdown( |
| 154 int tick_count) {} |
| 155 |
149 void DefaultAccessibilityDelegate::PlayEarcon(int sound_key) {} | 156 void DefaultAccessibilityDelegate::PlayEarcon(int sound_key) {} |
150 | 157 |
151 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { | 158 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { |
152 return base::TimeDelta(); | 159 return base::TimeDelta(); |
153 } | 160 } |
154 | 161 |
155 void DefaultAccessibilityDelegate::HandleAccessibilityGesture( | 162 void DefaultAccessibilityDelegate::HandleAccessibilityGesture( |
156 ui::AXGesture gesture) {} | 163 ui::AXGesture gesture) {} |
157 | 164 |
158 } // namespace ash | 165 } // namespace ash |
OLD | NEW |