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/default_accessibility_delegate.h" | 5 #include "ash/default_accessibility_delegate.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 namespace ash { | 9 namespace ash { |
10 namespace internal { | |
11 | 10 |
12 DefaultAccessibilityDelegate::DefaultAccessibilityDelegate() | 11 DefaultAccessibilityDelegate::DefaultAccessibilityDelegate() |
13 : spoken_feedback_enabled_(false), | 12 : spoken_feedback_enabled_(false), |
14 high_contrast_enabled_(false), | 13 high_contrast_enabled_(false), |
15 screen_magnifier_enabled_(false), | 14 screen_magnifier_enabled_(false), |
16 screen_magnifier_type_(kDefaultMagnifierType), | 15 screen_magnifier_type_(kDefaultMagnifierType), |
17 large_cursor_enabled_(false), | 16 large_cursor_enabled_(false), |
18 autoclick_enabled_(false), | 17 autoclick_enabled_(false), |
19 virtual_keyboard_enabled_(false), | 18 virtual_keyboard_enabled_(false), |
20 accessibility_alert_(A11Y_ALERT_NONE) { | 19 accessibility_alert_(A11Y_ALERT_NONE) { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 } | 107 } |
109 | 108 |
110 AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() { | 109 AccessibilityAlert DefaultAccessibilityDelegate::GetLastAccessibilityAlert() { |
111 return accessibility_alert_; | 110 return accessibility_alert_; |
112 } | 111 } |
113 | 112 |
114 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { | 113 base::TimeDelta DefaultAccessibilityDelegate::PlayShutdownSound() const { |
115 return base::TimeDelta(); | 114 return base::TimeDelta(); |
116 } | 115 } |
117 | 116 |
118 } // namespace internal | |
119 } // namespace ash | 117 } // namespace ash |
OLD | NEW |