| 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 | 27 |
| 27 namespace ui { | 28 namespace ui { |
| 28 enum TextBoundaryDirection; | 29 enum TextBoundaryDirection; |
| 29 enum TextBoundaryType; | 30 enum TextBoundaryType; |
| 30 } | 31 } |
| 31 | 32 |
| 32 namespace content { | 33 namespace content { |
| 33 class BrowserAccessibilityRelation; | 34 class BrowserAccessibilityRelation; |
| 34 | 35 |
| 35 //////////////////////////////////////////////////////////////////////////////// | 36 //////////////////////////////////////////////////////////////////////////////// |
| (...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 | 984 |
| 984 CONTENT_EXPORT BrowserAccessibilityWin* | 985 CONTENT_EXPORT BrowserAccessibilityWin* |
| 985 ToBrowserAccessibilityWin(BrowserAccessibility* obj); | 986 ToBrowserAccessibilityWin(BrowserAccessibility* obj); |
| 986 | 987 |
| 987 CONTENT_EXPORT const BrowserAccessibilityWin* | 988 CONTENT_EXPORT const BrowserAccessibilityWin* |
| 988 ToBrowserAccessibilityWin(const BrowserAccessibility* obj); | 989 ToBrowserAccessibilityWin(const BrowserAccessibility* obj); |
| 989 | 990 |
| 990 } // namespace content | 991 } // namespace content |
| 991 | 992 |
| 992 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ | 993 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ |
| OLD | NEW |