| 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_WIN_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlcom.h> | 9 #include <atlcom.h> |
| 10 #include <oleacc.h> | 10 #include <oleacc.h> |
| 11 #include <stddef.h> | 11 #include <stddef.h> |
| 12 #include <stdint.h> | 12 #include <stdint.h> |
| 13 #include <UIAutomationCore.h> | 13 #include <UIAutomationCore.h> |
| 14 | 14 |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
| 18 #include "base/gtest_prod_util.h" | 18 #include "base/gtest_prod_util.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "content/browser/accessibility/browser_accessibility.h" | 20 #include "content/browser/accessibility/browser_accessibility.h" |
| 21 #include "content/common/content_export.h" | 21 #include "content/common/content_export.h" |
| 22 #include "third_party/iaccessible2/ia2_api_all.h" | 22 #include "third_party/iaccessible2/ia2_api_all.h" |
| 23 #include "third_party/isimpledom/ISimpleDOMDocument.h" | 23 #include "third_party/isimpledom/ISimpleDOMDocument.h" |
| 24 #include "third_party/isimpledom/ISimpleDOMNode.h" | 24 #include "third_party/isimpledom/ISimpleDOMNode.h" |
| 25 #include "third_party/isimpledom/ISimpleDOMText.h" | 25 #include "third_party/isimpledom/ISimpleDOMText.h" |
| 26 #include "ui/accessibility/platform/ax_platform_node_win.h" | 26 #include "ui/accessibility/platform/ax_platform_node_win.h" |
| 27 | 27 |
| 28 namespace ui { | |
| 29 enum TextBoundaryDirection; | |
| 30 enum TextBoundaryType; | |
| 31 } | |
| 32 | |
| 33 namespace content { | 28 namespace content { |
| 34 class BrowserAccessibilityRelation; | 29 class BrowserAccessibilityRelation; |
| 35 | 30 |
| 36 //////////////////////////////////////////////////////////////////////////////// | 31 //////////////////////////////////////////////////////////////////////////////// |
| 37 // | 32 // |
| 38 // BrowserAccessibilityWin | 33 // BrowserAccessibilityWin |
| 39 // | 34 // |
| 40 // Class implementing the windows accessible interface for the Browser-Renderer | 35 // Class implementing the windows accessible interface for the Browser-Renderer |
| 41 // communication of accessibility information, providing accessibility | 36 // communication of accessibility information, providing accessibility |
| 42 // to be used by screen readers and other assistive technology (AT). | 37 // to be used by screen readers and other assistive technology (AT). |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 | 977 |
| 983 CONTENT_EXPORT BrowserAccessibilityWin* | 978 CONTENT_EXPORT BrowserAccessibilityWin* |
| 984 ToBrowserAccessibilityWin(BrowserAccessibility* obj); | 979 ToBrowserAccessibilityWin(BrowserAccessibility* obj); |
| 985 | 980 |
| 986 CONTENT_EXPORT const BrowserAccessibilityWin* | 981 CONTENT_EXPORT const BrowserAccessibilityWin* |
| 987 ToBrowserAccessibilityWin(const BrowserAccessibility* obj); | 982 ToBrowserAccessibilityWin(const BrowserAccessibility* obj); |
| 988 | 983 |
| 989 } // namespace content | 984 } // namespace content |
| 990 | 985 |
| 991 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ | 986 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| OLD | NEW |