| 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 void DefaultAccessibilityDelegate::PlaySpokenFeedbackToggleCountdown( | |
| 150 int tick_count) {} | |
| 151 | |
| 152 void DefaultAccessibilityDelegate::PlayEarcon(int sound_key) {} | 149 void DefaultAccessibilityDelegate::PlayEarcon(int sound_key) {} |
| 153 | 150 |
| 154 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { | 151 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { |
| 155 return base::TimeDelta(); | 152 return base::TimeDelta(); |
| 156 } | 153 } |
| 157 | 154 |
| 158 void DefaultAccessibilityDelegate::HandleAccessibilityGesture( | 155 void DefaultAccessibilityDelegate::HandleAccessibilityGesture( |
| 159 ui::AXGesture gesture) {} | 156 ui::AXGesture gesture) {} |
| 160 | 157 |
| 161 } // namespace ash | 158 } // namespace ash |
| OLD | NEW |