OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ |
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 void EnableAccessibility() override; | 43 void EnableAccessibility() override; |
44 void DisableAccessibility() override; | 44 void DisableAccessibility() override; |
45 void ResetAccessibilityMode() override; | 45 void ResetAccessibilityMode() override; |
46 void OnScreenReaderDetected() override; | 46 void OnScreenReaderDetected() override; |
47 bool IsAccessibleBrowser() override; | 47 bool IsAccessibleBrowser() override; |
48 void AddHistogramCallback(base::Closure callback) override; | 48 void AddHistogramCallback(base::Closure callback) override; |
49 | 49 |
50 void UpdateHistogramsForTesting() override; | 50 void UpdateHistogramsForTesting() override; |
51 | 51 |
52 AccessibilityMode accessibility_mode() const { return accessibility_mode_; }; | 52 AccessibilityMode accessibility_mode() const { return accessibility_mode_; }; |
| 53 void UpdateAnimationPolicy() override; |
53 | 54 |
54 // Adds the given accessibility mode to the current accessibility mode bitmap. | 55 // Adds the given accessibility mode to the current accessibility mode bitmap. |
55 void AddAccessibilityMode(AccessibilityMode mode); | 56 void AddAccessibilityMode(AccessibilityMode mode); |
56 | 57 |
57 // Removes the given accessibility mode from the current accessibility mode | 58 // Removes the given accessibility mode from the current accessibility mode |
58 // bitmap, managing the bits that are shared with other modes such that a | 59 // bitmap, managing the bits that are shared with other modes such that a |
59 // bit will only be turned off when all modes that depend on it have been | 60 // bit will only be turned off when all modes that depend on it have been |
60 // removed. | 61 // removed. |
61 void RemoveAccessibilityMode(AccessibilityMode mode); | 62 void RemoveAccessibilityMode(AccessibilityMode mode); |
62 | 63 |
(...skipping 20 matching lines...) Expand all Loading... |
83 AccessibilityMode accessibility_mode_; | 84 AccessibilityMode accessibility_mode_; |
84 | 85 |
85 std::vector<base::Closure> histogram_callbacks_; | 86 std::vector<base::Closure> histogram_callbacks_; |
86 | 87 |
87 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); | 88 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); |
88 }; | 89 }; |
89 | 90 |
90 } // namespace content | 91 } // namespace content |
91 | 92 |
92 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ | 93 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ |
OLD | NEW |