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 #include "components/html_viewer/document_resource_waiter.h" | 5 #include "components/html_viewer/document_resource_waiter.h" |
6 | 6 |
7 #include "components/html_viewer/global_state.h" | 7 #include "components/html_viewer/global_state.h" |
8 #include "components/html_viewer/html_document_oopif.h" | 8 #include "components/html_viewer/html_document_oopif.h" |
9 #include "components/html_viewer/html_frame_tree_manager.h" | 9 #include "components/html_viewer/html_frame_tree_manager.h" |
10 #include "components/view_manager/public/cpp/view.h" | 10 #include "components/view_manager/public/cpp/view.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 } | 82 } |
83 | 83 |
84 void DocumentResourceWaiter::OnFrameClientPropertyChanged( | 84 void DocumentResourceWaiter::OnFrameClientPropertyChanged( |
85 uint32_t frame_id, | 85 uint32_t frame_id, |
86 const mojo::String& name, | 86 const mojo::String& name, |
87 mojo::Array<uint8_t> new_value) { | 87 mojo::Array<uint8_t> new_value) { |
88 // It is assumed we receive OnConnect() (which unbinds) before anything else. | 88 // It is assumed we receive OnConnect() (which unbinds) before anything else. |
89 NOTREACHED(); | 89 NOTREACHED(); |
90 } | 90 } |
91 | 91 |
| 92 void DocumentResourceWaiter::PostMessage(uint32_t source_frame_id, |
| 93 uint32_t target_frame_id, |
| 94 mandoline::HTMLMessageEventPtr event) { |
| 95 // It is assumed we receive OnConnect() (which unbinds) before anything else. |
| 96 NOTREACHED(); |
| 97 } |
| 98 |
92 } // namespace html_viewer | 99 } // namespace html_viewer |
OLD | NEW |