Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: content/browser/accessibility/browser_accessibility_win.h

Issue 2795543002: Add GetScreenBoundsRect to ui::AXPlatformNodeDelegate (Closed)
Patch Set: Add GetScreenBoundsRect() to ui::AXPlatformNodeDelegate Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 978
978 CONTENT_EXPORT BrowserAccessibilityWin* 979 CONTENT_EXPORT BrowserAccessibilityWin*
979 ToBrowserAccessibilityWin(BrowserAccessibility* obj); 980 ToBrowserAccessibilityWin(BrowserAccessibility* obj);
980 981
981 CONTENT_EXPORT const BrowserAccessibilityWin* 982 CONTENT_EXPORT const BrowserAccessibilityWin*
982 ToBrowserAccessibilityWin(const BrowserAccessibility* obj); 983 ToBrowserAccessibilityWin(const BrowserAccessibility* obj);
983 984
984 } // namespace content 985 } // namespace content
985 986
986 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_ 987 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698