| 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 MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_H_ | 5 #ifndef MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_H_ |
| 6 #define MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_H_ | 6 #define MOJO_SERVICES_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 "mojo/public/cpp/application/interface_factory.h" | 12 #include "mojo/public/cpp/application/interface_factory.h" |
| 13 #include "mojo/public/cpp/application/lazy_interface_ptr.h" | 13 #include "mojo/public/cpp/application/lazy_interface_ptr.h" |
| 14 #include "mojo/public/cpp/application/service_provider_impl.h" | 14 #include "mojo/public/cpp/application/service_provider_impl.h" |
| 15 #include "mojo/public/cpp/bindings/interface_impl.h" | 15 #include "mojo/public/cpp/bindings/interface_impl.h" |
| 16 #include "mojo/public/interfaces/application/application.mojom.h" | 16 #include "mojo/public/interfaces/application/application.mojom.h" |
| 17 #include "mojo/services/content_handler/public/interfaces/content_handler.mojom.
h" |
| 17 #include "mojo/services/html_viewer/ax_provider_impl.h" | 18 #include "mojo/services/html_viewer/ax_provider_impl.h" |
| 18 #include "mojo/services/public/cpp/view_manager/view_manager_client_factory.h" | 19 #include "mojo/services/navigation/public/interfaces/navigation.mojom.h" |
| 19 #include "mojo/services/public/cpp/view_manager/view_manager_delegate.h" | 20 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" |
| 20 #include "mojo/services/public/cpp/view_manager/view_observer.h" | 21 #include "mojo/services/view_manager/public/cpp/view_manager_client_factory.h" |
| 21 #include "mojo/services/public/interfaces/content_handler/content_handler.mojom.
h" | 22 #include "mojo/services/view_manager/public/cpp/view_manager_delegate.h" |
| 22 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" | 23 #include "mojo/services/view_manager/public/cpp/view_observer.h" |
| 23 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" | |
| 24 #include "third_party/WebKit/public/web/WebFrameClient.h" | 24 #include "third_party/WebKit/public/web/WebFrameClient.h" |
| 25 #include "third_party/WebKit/public/web/WebViewClient.h" | 25 #include "third_party/WebKit/public/web/WebViewClient.h" |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class MessageLoopProxy; | 28 class MessageLoopProxy; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace mojo { | 31 namespace mojo { |
| 32 | 32 |
| 33 class AxProviderImpl; | 33 class AxProviderImpl; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 // HTMLDocument owns these pointers. | 130 // HTMLDocument owns these pointers. |
| 131 std::set<AxProviderImpl*> ax_provider_impls_; | 131 std::set<AxProviderImpl*> ax_provider_impls_; |
| 132 | 132 |
| 133 DISALLOW_COPY_AND_ASSIGN(HTMLDocument); | 133 DISALLOW_COPY_AND_ASSIGN(HTMLDocument); |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace mojo | 136 } // namespace mojo |
| 137 | 137 |
| 138 #endif // MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_H_ | 138 #endif // MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_H_ |
| OLD | NEW |