OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/services/html_viewer/ax_provider_impl.h" | 5 #include "components/html_viewer/ax_provider_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "components/html_viewer/blink_platform_impl.h" |
9 #include "gin/v8_initializer.h" | 10 #include "gin/v8_initializer.h" |
10 #include "mojo/services/html_viewer/blink_platform_impl.h" | |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 #include "third_party/WebKit/public/platform/WebData.h" | 12 #include "third_party/WebKit/public/platform/WebData.h" |
13 #include "third_party/WebKit/public/platform/WebURL.h" | 13 #include "third_party/WebKit/public/platform/WebURL.h" |
14 #include "third_party/WebKit/public/web/WebFrameClient.h" | 14 #include "third_party/WebKit/public/web/WebFrameClient.h" |
15 #include "third_party/WebKit/public/web/WebKit.h" | 15 #include "third_party/WebKit/public/web/WebKit.h" |
16 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 16 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
17 #include "third_party/WebKit/public/web/WebView.h" | 17 #include "third_party/WebKit/public/web/WebView.h" |
18 #include "third_party/WebKit/public/web/WebViewClient.h" | 18 #include "third_party/WebKit/public/web/WebViewClient.h" |
19 #include "url/gurl.h" | 19 #include "url/gurl.h" |
20 | 20 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 "", | 169 "", |
170 "")); | 170 "")); |
171 } | 171 } |
172 } | 172 } |
173 | 173 |
174 // TODO(aa): Test bounds. | 174 // TODO(aa): Test bounds. |
175 // TODO(aa): Test sibling ordering of foo/bar/baz. | 175 // TODO(aa): Test sibling ordering of foo/bar/baz. |
176 | 176 |
177 view->close(); | 177 view->close(); |
178 } | 178 } |
OLD | NEW |