| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "base/callback.h" | 5 #include "base/callback.h" |
| 6 #include "base/macros.h" | 6 #include "base/macros.h" |
| 7 #include "content/browser/web_contents/web_contents_impl.h" | 7 #include "content/browser/web_contents/web_contents_impl.h" |
| 8 #include "content/public/test/content_browser_test.h" | 8 #include "content/public/test/content_browser_test.h" |
| 9 #include "content/public/test/content_browser_test_utils.h" | 9 #include "content/public/test/content_browser_test_utils.h" |
| 10 #include "content/public/test/test_utils.h" | 10 #include "content/public/test/test_utils.h" |
| 11 #include "content/shell/browser/shell.h" | 11 #include "content/shell/browser/shell.h" |
| 12 #include "content/test/content_browser_test_utils_internal.h" | 12 #include "content/test/content_browser_test_utils_internal.h" |
| 13 #include "net/dns/mock_host_resolver.h" | 13 #include "net/dns/mock_host_resolver.h" |
| 14 #include "net/test/embedded_test_server/embedded_test_server.h" | 14 #include "net/test/embedded_test_server/embedded_test_server.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "ui/accessibility/ax_enums.h" |
| 16 #include "ui/accessibility/ax_node.h" | 17 #include "ui/accessibility/ax_node.h" |
| 17 #include "ui/accessibility/ax_tree.h" | 18 #include "ui/accessibility/ax_tree.h" |
| 18 | 19 |
| 19 namespace content { | 20 namespace content { |
| 20 | 21 |
| 21 namespace { | 22 namespace { |
| 22 | 23 |
| 23 class AXTreeSnapshotWaiter { | 24 class AXTreeSnapshotWaiter { |
| 24 public: | 25 public: |
| 25 AXTreeSnapshotWaiter() : loop_runner_(new MessageLoopRunner()) {} | 26 AXTreeSnapshotWaiter() : loop_runner_(new MessageLoopRunner()) {} |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 " group\n" | 136 " group\n" |
| 136 " button 'Inside Before'\n" | 137 " button 'Inside Before'\n" |
| 137 " iframe\n" | 138 " iframe\n" |
| 138 " rootWebArea\n" | 139 " rootWebArea\n" |
| 139 " button 'Inside After'\n" | 140 " button 'Inside After'\n" |
| 140 " button 'After'\n", | 141 " button 'After'\n", |
| 141 dump); | 142 dump); |
| 142 } | 143 } |
| 143 | 144 |
| 144 } // namespace content | 145 } // namespace content |
| OLD | NEW |