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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "base/win/scoped_bstr.h" | 9 #include "base/win/scoped_bstr.h" |
10 #include "base/win/scoped_comptr.h" | 10 #include "base/win/scoped_comptr.h" |
11 #include "base/win/scoped_variant.h" | 11 #include "base/win/scoped_variant.h" |
12 #include "content/browser/accessibility/accessibility_tree_formatter_utils_win.h
" | 12 #include "content/browser/accessibility/accessibility_tree_formatter_utils_win.h
" |
13 #include "content/browser/renderer_host/render_view_host_impl.h" | 13 #include "content/browser/renderer_host/render_view_host_impl.h" |
14 #include "content/public/browser/notification_service.h" | 14 #include "content/public/browser/notification_service.h" |
15 #include "content/public/browser/notification_types.h" | 15 #include "content/public/browser/notification_types.h" |
16 #include "content/public/browser/render_view_host.h" | 16 #include "content/public/browser/render_view_host.h" |
17 #include "content/public/browser/render_widget_host_view.h" | 17 #include "content/public/browser/render_widget_host_view.h" |
18 #include "content/public/browser/web_contents.h" | 18 #include "content/public/browser/web_contents.h" |
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
897 AccessibleChecker grouping2_checker(std::wstring(), ROLE_SYSTEM_GROUPING, | 897 AccessibleChecker grouping2_checker(std::wstring(), ROLE_SYSTEM_GROUPING, |
898 std::wstring()); | 898 std::wstring()); |
899 AccessibleChecker document_checker(std::wstring(), ROLE_SYSTEM_DOCUMENT, | 899 AccessibleChecker document_checker(std::wstring(), ROLE_SYSTEM_DOCUMENT, |
900 std::wstring()); | 900 std::wstring()); |
901 document_checker.AppendExpectedChild(&grouping1_checker); | 901 document_checker.AppendExpectedChild(&grouping1_checker); |
902 document_checker.AppendExpectedChild(&grouping2_checker); | 902 document_checker.AppendExpectedChild(&grouping2_checker); |
903 document_checker.CheckAccessible(GetRendererAccessible()); | 903 document_checker.CheckAccessible(GetRendererAccessible()); |
904 } | 904 } |
905 | 905 |
906 } // namespace content | 906 } // namespace content |
OLD | NEW |