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_VIEW_H_ | 5 #ifndef MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_ |
6 #define MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_ | 6 #define MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "mojo/public/cpp/application/lazy_interface_ptr.h" | 10 #include "mojo/public/cpp/application/lazy_interface_ptr.h" |
11 #include "mojo/public/interfaces/service_provider/service_provider.mojom.h" | |
12 #include "mojo/services/public/cpp/view_manager/node_observer.h" | 11 #include "mojo/services/public/cpp/view_manager/node_observer.h" |
13 #include "mojo/services/public/cpp/view_manager/view_observer.h" | 12 #include "mojo/services/public/cpp/view_manager/view_observer.h" |
14 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" | 13 #include "mojo/services/public/interfaces/navigation/navigation.mojom.h" |
15 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" | 14 #include "mojo/services/public/interfaces/network/url_loader.mojom.h" |
16 #include "third_party/WebKit/public/web/WebFrameClient.h" | 15 #include "third_party/WebKit/public/web/WebFrameClient.h" |
17 #include "third_party/WebKit/public/web/WebViewClient.h" | 16 #include "third_party/WebKit/public/web/WebViewClient.h" |
18 | 17 |
19 namespace mojo { | 18 namespace mojo { |
20 | 19 |
21 class Node; | 20 class Node; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 bool repaint_pending_; | 77 bool repaint_pending_; |
79 LazyInterfacePtr<NavigatorHost> navigator_host_; | 78 LazyInterfacePtr<NavigatorHost> navigator_host_; |
80 | 79 |
81 base::WeakPtrFactory<HTMLDocumentView> weak_factory_; | 80 base::WeakPtrFactory<HTMLDocumentView> weak_factory_; |
82 DISALLOW_COPY_AND_ASSIGN(HTMLDocumentView); | 81 DISALLOW_COPY_AND_ASSIGN(HTMLDocumentView); |
83 }; | 82 }; |
84 | 83 |
85 } // namespace mojo | 84 } // namespace mojo |
86 | 85 |
87 #endif // MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_ | 86 #endif // MOJO_SERVICES_HTML_VIEWER_HTML_DOCUMENT_VIEW_H_ |
OLD | NEW |