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 #ifndef COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ |
6 #define COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ | 6 #define COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "components/html_viewer/html_frame_tree_manager_observer.h" | 9 #include "components/html_viewer/html_frame_tree_manager_observer.h" |
10 #include "components/view_manager/public/cpp/view_observer.h" | 10 #include "components/mus/public/cpp/view_observer.h" |
11 #include "components/web_view/public/interfaces/frame_tree.mojom.h" | 11 #include "components/web_view/public/interfaces/frame_tree.mojom.h" |
12 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" | 12 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" |
13 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | 13 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 class View; | 16 class View; |
17 } | 17 } |
18 | 18 |
19 namespace html_viewer { | 19 namespace html_viewer { |
20 | 20 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 bool waiting_for_change_id_; | 114 bool waiting_for_change_id_; |
115 | 115 |
116 HTMLFrameTreeManager* target_frame_tree_; | 116 HTMLFrameTreeManager* target_frame_tree_; |
117 | 117 |
118 DISALLOW_COPY_AND_ASSIGN(DocumentResourceWaiter); | 118 DISALLOW_COPY_AND_ASSIGN(DocumentResourceWaiter); |
119 }; | 119 }; |
120 | 120 |
121 } // namespace html_viewer | 121 } // namespace html_viewer |
122 | 122 |
123 #endif // COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ | 123 #endif // COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ |
OLD | NEW |