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 <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "content/browser/renderer_host/render_view_host_impl.h" | 9 #include "content/browser/renderer_host/render_view_host_impl.h" |
10 #include "content/public/browser/notification_service.h" | 10 #include "content/public/browser/notification_service.h" |
11 #include "content/public/browser/notification_types.h" | 11 #include "content/public/browser/notification_types.h" |
12 #include "content/public/browser/render_widget_host_view.h" | 12 #include "content/public/browser/render_widget_host_view.h" |
13 #include "content/shell/shell.h" | 13 #include "content/shell/browser/shell.h" |
14 #include "content/test/accessibility_browser_test_utils.h" | 14 #include "content/test/accessibility_browser_test_utils.h" |
15 #include "content/test/content_browser_test.h" | 15 #include "content/test/content_browser_test.h" |
16 #include "content/test/content_browser_test_utils.h" | 16 #include "content/test/content_browser_test_utils.h" |
17 | 17 |
18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
19 #include <atlbase.h> | 19 #include <atlbase.h> |
20 #include <atlcom.h> | 20 #include <atlcom.h> |
21 #include "base/win/scoped_com_initializer.h" | 21 #include "base/win/scoped_com_initializer.h" |
22 #include "ui/base/win/atl_module.h" | 22 #include "ui/base/win/atl_module.h" |
23 #endif | 23 #endif |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 const AccessibilityNodeDataTreeNode& tree = GetAccessibilityNodeDataTree(); | 456 const AccessibilityNodeDataTreeNode& tree = GetAccessibilityNodeDataTree(); |
457 | 457 |
458 ASSERT_EQ(1U, tree.children.size()); | 458 ASSERT_EQ(1U, tree.children.size()); |
459 const AccessibilityNodeDataTreeNode& textbox = tree.children[0]; | 459 const AccessibilityNodeDataTreeNode& textbox = tree.children[0]; |
460 | 460 |
461 EXPECT_EQ( | 461 EXPECT_EQ( |
462 true, GetBoolAttr(textbox, AccessibilityNodeData::ATTR_CAN_SET_VALUE)); | 462 true, GetBoolAttr(textbox, AccessibilityNodeData::ATTR_CAN_SET_VALUE)); |
463 } | 463 } |
464 | 464 |
465 } // namespace content | 465 } // namespace content |
OLD | NEW |