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" | |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
13 #include "content/common/accessibility_mode_enums.h" | 13 #include "content/common/accessibility_mode_enums.h" |
14 #include "content/public/browser/browser_accessibility_state.h" | 14 #include "content/public/browser/browser_accessibility_state.h" |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 | 17 |
18 // The BrowserAccessibilityState class is used to determine if Chrome should be | 18 // The BrowserAccessibilityState class is used to determine if Chrome should be |
19 // customized for users with assistive technology, such as screen readers. We | 19 // customized for users with assistive technology, such as screen readers. We |
20 // modify the behavior of certain user interfaces to provide a better experience | 20 // modify the behavior of certain user interfaces to provide a better experience |
21 // for screen reader users. The way we detect a screen reader program is | 21 // for screen reader users. The way we detect a screen reader program is |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 std::vector<base::Closure> histogram_callbacks_; | 97 std::vector<base::Closure> histogram_callbacks_; |
98 | 98 |
99 bool disable_hot_tracking_; | 99 bool disable_hot_tracking_; |
100 | 100 |
101 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); | 101 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); |
102 }; | 102 }; |
103 | 103 |
104 } // namespace content | 104 } // namespace content |
105 | 105 |
106 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ | 106 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ |
OLD | NEW |