| 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 #include "content/browser/frame_host/render_frame_proxy_host.h" | 5 #include "content/browser/frame_host/render_frame_proxy_host.h" |
| 6 | 6 |
| 7 #include "content/browser/frame_host/cross_process_frame_connector.h" | 7 #include "content/browser/frame_host/cross_process_frame_connector.h" |
| 8 #include "content/browser/frame_host/frame_tree.h" | 8 #include "content/browser/frame_host/frame_tree.h" |
| 9 #include "content/browser/frame_host/frame_tree_node.h" | 9 #include "content/browser/frame_host/frame_tree_node.h" |
| 10 #include "content/browser/frame_host/render_frame_host_impl.h" | 10 #include "content/browser/frame_host/render_frame_host_impl.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 Send(new FrameMsg_NewFrameProxy( | 104 Send(new FrameMsg_NewFrameProxy( |
| 105 routing_id_, | 105 routing_id_, |
| 106 parent_routing_id, | 106 parent_routing_id, |
| 107 frame_tree_node_->frame_tree()->GetRenderViewHost( | 107 frame_tree_node_->frame_tree()->GetRenderViewHost( |
| 108 site_instance_)->GetRoutingID())); | 108 site_instance_)->GetRoutingID())); |
| 109 | 109 |
| 110 return true; | 110 return true; |
| 111 } | 111 } |
| 112 | 112 |
| 113 void RenderFrameProxyHost::DisownOpener() { |
| 114 Send(new FrameMsg_DisownOpener(GetRoutingID())); |
| 115 } |
| 116 |
| 117 |
| 113 } // namespace content | 118 } // namespace content |
| OLD | NEW |