Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_impl.h |
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h |
| index 5ad5b9b42585272002d4399bbc51a9862b5f322a..d907a903d463b2332b2960d19e85085c50aae11c 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.h |
| +++ b/content/browser/frame_host/render_frame_host_impl.h |
| @@ -50,6 +50,7 @@ class GURL; |
| struct AccessibilityHostMsg_EventParams; |
| struct AccessibilityHostMsg_FindInPageResultParams; |
| struct AccessibilityHostMsg_LocationChangeParams; |
| +struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
| struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; |
| struct FrameHostMsg_OpenURL_Params; |
| struct FrameMsg_TextTrackSettings_Params; |
| @@ -808,6 +809,11 @@ class CONTENT_EXPORT RenderFrameHostImpl |
| void OnRendererConnect(const service_manager::ServiceInfo& local_info, |
| const service_manager::ServiceInfo& remote_info); |
| + // Returns ownership the NavigationHandle associated with a navigation that |
|
Charlie Reis
2016/11/04 17:30:53
nit: ownership of
clamy
2016/11/07 14:10:51
Done.
|
| + // just committed. |
| + std::unique_ptr<NavigationHandleImpl> TakeNavigationHandleForCommit( |
| + const FrameHostMsg_DidCommitProvisionalLoad_Params& params); |
| + |
| // For now, RenderFrameHosts indirectly keep RenderViewHosts alive via a |
| // refcount that calls Shutdown when it reaches zero. This allows each |
| // RenderFrameHostManager to just care about RenderFrameHosts, while ensuring |