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 #include <atlbase.h> | 5 #include <atlbase.h> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "base/win/scoped_comptr.h" | 10 #include "base/win/scoped_comptr.h" |
11 #include "chrome/browser/automation/ui_controls.h" | 11 #include "chrome/browser/automation/ui_controls.h" |
12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
14 #include "chrome/common/url_constants.h" | 14 #include "chrome/common/url_constants.h" |
15 #include "chrome/test/base/in_process_browser_test.h" | 15 #include "chrome/test/base/in_process_browser_test.h" |
16 #include "chrome/test/base/ui_test_utils.h" | 16 #include "chrome/test/base/ui_test_utils.h" |
17 #include "content/browser/renderer_host/test_render_view_host.h" | |
18 #include "content/public/browser/notification_service.h" | 17 #include "content/public/browser/notification_service.h" |
19 #include "content/public/browser/notification_types.h" | 18 #include "content/public/browser/notification_types.h" |
20 #include "content/public/browser/render_view_host.h" | 19 #include "content/public/browser/render_view_host.h" |
21 #include "content/public/browser/render_widget_host_view.h" | 20 #include "content/public/browser/render_widget_host_view.h" |
22 #include "content/public/browser/web_contents.h" | 21 #include "content/public/browser/web_contents.h" |
| 22 #include "content/test/test_renderer_host.h" |
23 #include "third_party/iaccessible2/ia2_api_all.h" | 23 #include "third_party/iaccessible2/ia2_api_all.h" |
24 #include "third_party/isimpledom/ISimpleDOMNode.h" | 24 #include "third_party/isimpledom/ISimpleDOMNode.h" |
25 | 25 |
26 using content::OpenURLParams; | 26 using content::OpenURLParams; |
27 using content::Referrer; | 27 using content::Referrer; |
28 using std::auto_ptr; | 28 using std::auto_ptr; |
29 using std::vector; | 29 using std::vector; |
30 using std::wstring; | 30 using std::wstring; |
31 | 31 |
32 namespace { | 32 namespace { |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 if (*found) | 189 if (*found) |
190 return; | 190 return; |
191 } | 191 } |
192 } | 192 } |
193 } | 193 } |
194 | 194 |
195 // Retrieve the MSAA client accessibility object for the Render Widget Host View | 195 // Retrieve the MSAA client accessibility object for the Render Widget Host View |
196 // of the selected tab. | 196 // of the selected tab. |
197 IAccessible* | 197 IAccessible* |
198 AccessibilityWinBrowserTest::GetRendererAccessible() { | 198 AccessibilityWinBrowserTest::GetRendererAccessible() { |
199 content::TestRenderViewHost::EnableAccessibilityUpdatedNotifications( | 199 content::RenderViewHostTester::EnableAccessibilityUpdatedNotifications( |
200 browser()->GetSelectedWebContents()->GetRenderViewHost()); | 200 browser()->GetSelectedWebContents()->GetRenderViewHost()); |
201 | 201 |
202 HWND hwnd_render_widget_host_view = | 202 HWND hwnd_render_widget_host_view = |
203 browser()->GetSelectedWebContents()->GetRenderWidgetHostView()-> | 203 browser()->GetSelectedWebContents()->GetRenderWidgetHostView()-> |
204 GetNativeView(); | 204 GetNativeView(); |
205 | 205 |
206 // Invoke windows screen reader detection by sending the WM_GETOBJECT message | 206 // Invoke windows screen reader detection by sending the WM_GETOBJECT message |
207 // with kIdCustom as the LPARAM. | 207 // with kIdCustom as the LPARAM. |
208 const int32 kIdCustom = 1; | 208 const int32 kIdCustom = 1; |
209 SendMessage( | 209 SendMessage( |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 | 757 |
758 // Check the browser's copy of the renderer accessibility tree. | 758 // Check the browser's copy of the renderer accessibility tree. |
759 AccessibleChecker grouping1_checker(L"", ROLE_SYSTEM_GROUPING, L""); | 759 AccessibleChecker grouping1_checker(L"", ROLE_SYSTEM_GROUPING, L""); |
760 AccessibleChecker grouping2_checker(L"", ROLE_SYSTEM_GROUPING, L""); | 760 AccessibleChecker grouping2_checker(L"", ROLE_SYSTEM_GROUPING, L""); |
761 AccessibleChecker document_checker(L"", ROLE_SYSTEM_DOCUMENT, L""); | 761 AccessibleChecker document_checker(L"", ROLE_SYSTEM_DOCUMENT, L""); |
762 document_checker.AppendExpectedChild(&grouping1_checker); | 762 document_checker.AppendExpectedChild(&grouping1_checker); |
763 document_checker.AppendExpectedChild(&grouping2_checker); | 763 document_checker.AppendExpectedChild(&grouping2_checker); |
764 document_checker.CheckAccessible(GetRendererAccessible()); | 764 document_checker.CheckAccessible(GetRendererAccessible()); |
765 } | 765 } |
766 } // namespace. | 766 } // namespace. |
OLD | NEW |