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_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ | 5 #ifndef CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ |
6 #define CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ | 6 #define CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ |
7 | 7 |
8 #include "content/common/accessibility_messages.h" | 8 #include "content/common/accessibility_messages.h" |
9 #include "content/public/renderer/render_view_observer.h" | 9 #include "content/public/renderer/render_view_observer.h" |
10 #include "third_party/WebKit/public/web/WebAXObject.h" | 10 #include "third_party/WebKit/public/web/WebAXObject.h" |
11 | 11 |
12 namespace blink { | 12 namespace blink { |
13 class WebDocument; | 13 class WebDocument; |
| 14 class WebElement; |
14 }; | 15 }; |
15 | 16 |
16 namespace content { | 17 namespace content { |
17 class RenderViewImpl; | 18 class RenderViewImpl; |
18 | 19 |
19 enum RendererAccessibilityType { | 20 enum RendererAccessibilityType { |
20 // Turns on Blink accessibility and provides a full accessibility | 21 // Turns on Blink accessibility and provides a full accessibility |
21 // implementation for when assistive technology is running. | 22 // implementation for when assistive technology is running. |
22 RendererAccessibilityTypeComplete, | 23 RendererAccessibilityTypeComplete, |
23 | 24 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 86 |
86 // True if verbose logging of accessibility events is on. | 87 // True if verbose logging of accessibility events is on. |
87 bool logging_; | 88 bool logging_; |
88 | 89 |
89 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); | 90 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); |
90 }; | 91 }; |
91 | 92 |
92 } // namespace content | 93 } // namespace content |
93 | 94 |
94 #endif // CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ | 95 #endif // CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ |
OLD | NEW |