| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| 11 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 12 #include "content/common/ax_content_node_data.h" | 13 #include "content/common/ax_content_node_data.h" |
| 13 #include "content/public/renderer/render_frame_observer.h" | 14 #include "content/public/renderer/render_frame_observer.h" |
| 14 #include "content/renderer/accessibility/blink_ax_tree_source.h" | 15 #include "content/renderer/accessibility/blink_ax_tree_source.h" |
| 15 #include "third_party/WebKit/public/web/WebAXObject.h" | 16 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 16 #include "ui/accessibility/ax_tree_serializer.h" | 17 #include "ui/accessibility/ax_tree_serializer.h" |
| 17 | 18 |
| 18 struct AccessibilityHostMsg_EventParams; | 19 struct AccessibilityHostMsg_EventParams; |
| 19 | 20 |
| 20 namespace blink { | 21 namespace blink { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 149 |
| 149 // So we can queue up tasks to be executed later. | 150 // So we can queue up tasks to be executed later. |
| 150 base::WeakPtrFactory<RendererAccessibility> weak_factory_; | 151 base::WeakPtrFactory<RendererAccessibility> weak_factory_; |
| 151 | 152 |
| 152 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); | 153 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); |
| 153 }; | 154 }; |
| 154 | 155 |
| 155 } // namespace content | 156 } // namespace content |
| 156 | 157 |
| 157 #endif // CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ | 158 #endif // CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_ |
| OLD | NEW |