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 "mandoline/tab/public/interfaces/frame_tree.mojom.h" | 9 #include "mandoline/tab/public/interfaces/frame_tree.mojom.h" |
10 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" | 10 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" |
| 11 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
11 | 12 |
12 namespace mojo { | 13 namespace mojo { |
13 class View; | 14 class View; |
14 } | 15 } |
15 | 16 |
16 namespace html_viewer { | 17 namespace html_viewer { |
17 | 18 |
18 class HTMLDocumentOOPIF; | 19 class HTMLDocumentOOPIF; |
19 class GlobalState; | 20 class GlobalState; |
20 | 21 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // here. | 76 // here. |
76 mojo::InterfaceRequest<mandoline::FrameTreeClient> frame_tree_client_request_; | 77 mojo::InterfaceRequest<mandoline::FrameTreeClient> frame_tree_client_request_; |
77 mojo::Binding<mandoline::FrameTreeClient> frame_tree_client_binding_; | 78 mojo::Binding<mandoline::FrameTreeClient> frame_tree_client_binding_; |
78 | 79 |
79 DISALLOW_COPY_AND_ASSIGN(DocumentResourceWaiter); | 80 DISALLOW_COPY_AND_ASSIGN(DocumentResourceWaiter); |
80 }; | 81 }; |
81 | 82 |
82 } // namespace html_viewer | 83 } // namespace html_viewer |
83 | 84 |
84 #endif // COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ | 85 #endif // COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ |
OLD | NEW |