| 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/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.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.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 |
| 22 // different for each platform. | 22 // different for each platform. |
| 23 // | 23 // |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 std::vector<base::Closure> histogram_callbacks_; | 92 std::vector<base::Closure> histogram_callbacks_; |
| 93 | 93 |
| 94 bool disable_hot_tracking_; | 94 bool disable_hot_tracking_; |
| 95 | 95 |
| 96 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); | 96 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityStateImpl); |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace content | 99 } // namespace content |
| 100 | 100 |
| 101 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ | 101 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_ |
| OLD | NEW |