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 24 matching lines...) Expand all Loading... |
35 class CONTENT_EXPORT BrowserAccessibilityStateImpl | 35 class CONTENT_EXPORT BrowserAccessibilityStateImpl |
36 : public base::RefCountedThreadSafe<BrowserAccessibilityStateImpl>, | 36 : public base::RefCountedThreadSafe<BrowserAccessibilityStateImpl>, |
37 public BrowserAccessibilityState { | 37 public BrowserAccessibilityState { |
38 public: | 38 public: |
39 BrowserAccessibilityStateImpl(); | 39 BrowserAccessibilityStateImpl(); |
40 | 40 |
41 static BrowserAccessibilityStateImpl* GetInstance(); | 41 static BrowserAccessibilityStateImpl* GetInstance(); |
42 | 42 |
43 virtual void EnableAccessibility() OVERRIDE; | 43 virtual void EnableAccessibility() OVERRIDE; |
44 virtual void DisableAccessibility() OVERRIDE; | 44 virtual void DisableAccessibility() OVERRIDE; |
| 45 virtual void ResetAccessibilityMode() OVERRIDE; |
45 virtual void OnScreenReaderDetected() OVERRIDE; | 46 virtual void OnScreenReaderDetected() OVERRIDE; |
46 virtual bool IsAccessibleBrowser() OVERRIDE; | 47 virtual bool IsAccessibleBrowser() OVERRIDE; |
47 virtual void AddHistogramCallback(base::Closure callback) OVERRIDE; | 48 virtual void AddHistogramCallback(base::Closure callback) OVERRIDE; |
48 | 49 |
49 virtual void UpdateHistogramsForTesting() OVERRIDE; | 50 virtual void UpdateHistogramsForTesting() OVERRIDE; |
50 | 51 |
51 AccessibilityMode accessibility_mode() const { return accessibility_mode_; }; | 52 unsigned int accessibility_mode() const { return accessibility_mode_; }; |
52 void SetAccessibilityMode(AccessibilityMode mode); | 53 |
| 54 // Adds the given accessibility mode to the current accessibility mode bitmap. |
| 55 void AddAccessibilityMode(AccessibilityMode mode); |
| 56 |
| 57 // 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 // bit will only be turned off when all modes that depend on it have been |
| 60 // removed. |
| 61 void RemoveAccessibilityMode(AccessibilityMode mode); |
53 | 62 |
54 private: | 63 private: |
55 friend class base::RefCountedThreadSafe<BrowserAccessibilityStateImpl>; | 64 friend class base::RefCountedThreadSafe<BrowserAccessibilityStateImpl>; |
56 friend struct DefaultSingletonTraits<BrowserAccessibilityStateImpl>; | 65 friend struct DefaultSingletonTraits<BrowserAccessibilityStateImpl>; |
57 | 66 |
58 // Called a short while after startup to allow time for the accessibility | 67 // Called a short while after startup to allow time for the accessibility |
59 // state to be determined. Updates histograms with the current state. | 68 // state to be determined. Updates histograms with the current state. |
60 void UpdateHistograms(); | 69 void UpdateHistograms(); |
61 | 70 |
62 // Leaky singleton, destructor generally won't be called. | 71 // Leaky singleton, destructor generally won't be called. |
63 virtual ~BrowserAccessibilityStateImpl(); | 72 virtual ~BrowserAccessibilityStateImpl(); |
64 | 73 |
65 void UpdatePlatformSpecificHistograms(); | 74 void UpdatePlatformSpecificHistograms(); |
66 | 75 |
67 AccessibilityMode accessibility_mode_; | 76 // Updates the accessibility mode of all render widgets, including swapped out |
| 77 // ones. |add| specifies whether the mode should be added or removed. |
| 78 void AddOrRemoveFromRenderWidgets(AccessibilityMode mode, bool add); |
| 79 |
| 80 unsigned int accessibility_mode_; |
68 | 81 |
69 std::vector<base::Closure> histogram_callbacks_; | 82 std::vector<base::Closure> histogram_callbacks_; |
70 | 83 |
71 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); | 84 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); |
72 }; | 85 }; |
73 | 86 |
74 } // namespace content | 87 } // namespace content |
75 | 88 |
76 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ | 89 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ |
OLD | NEW |