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 #ifndef COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ |
6 #define COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ | 6 #define COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
14 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h
" | 14 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h
" |
15 #include "components/html_viewer/ax_provider_impl.h" | 15 #include "components/html_viewer/ax_provider_impl.h" |
16 #include "components/html_viewer/html_frame_delegate.h" | 16 #include "components/html_viewer/html_frame_delegate.h" |
17 #include "components/html_viewer/public/interfaces/test_html_viewer.mojom.h" | 17 #include "components/html_viewer/public/interfaces/test_html_viewer.mojom.h" |
18 #include "components/mus/public/cpp/window_tree_delegate.h" | 18 #include "components/mus/public/cpp/window_tree_delegate.h" |
19 #include "components/web_view/public/interfaces/frame.mojom.h" | 19 #include "components/web_view/public/interfaces/frame.mojom.h" |
20 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" | 20 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" |
21 #include "mojo/shell/public/cpp/app_lifetime_helper.h" | 21 #include "mojo/shell/public/cpp/app_lifetime_helper.h" |
22 #include "mojo/shell/public/cpp/interface_factory.h" | 22 #include "mojo/shell/public/cpp/interface_factory.h" |
23 #include "mojo/shell/public/interfaces/application.mojom.h" | 23 #include "mojo/shell/public/interfaces/shell_client.mojom.h" |
24 | 24 |
25 namespace base { | 25 namespace base { |
26 class SingleThreadTaskRunner; | 26 class SingleThreadTaskRunner; |
27 } | 27 } |
28 | 28 |
29 namespace mus { | 29 namespace mus { |
30 class Window; | 30 class Window; |
31 class WindowTreeConnection; | 31 class WindowTreeConnection; |
32 } | 32 } |
33 | 33 |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 // initialized. | 170 // initialized. |
171 mojo::InterfaceRequest<devtools_service::DevToolsAgent> | 171 mojo::InterfaceRequest<devtools_service::DevToolsAgent> |
172 devtools_agent_request_; | 172 devtools_agent_request_; |
173 | 173 |
174 DISALLOW_COPY_AND_ASSIGN(HTMLDocument); | 174 DISALLOW_COPY_AND_ASSIGN(HTMLDocument); |
175 }; | 175 }; |
176 | 176 |
177 } // namespace html_viewer | 177 } // namespace html_viewer |
178 | 178 |
179 #endif // COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ | 179 #endif // COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ |
OLD | NEW |