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 #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 Loading... |
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 |
OLD | NEW |