| 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 835f6e70841288bd6687f9aad5693a266f498d2e..a4a780b15888f97f62d2d7d054819eefb48f72a7 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -114,6 +114,10 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost {
|
| PageTransition page_transition,
|
| bool should_replace_current_entry);
|
|
|
| + // Called on the current RenderFrameHost when the network response is first
|
| + // receieved.
|
| + void OnDeferredAfterResponseStarted(const GlobalRequestID& global_request_id);
|
| +
|
| // Tells the renderer that this RenderFrame is being swapped out for one in a
|
| // different renderer process. It should run its unload handler, move to
|
| // a blank document and create a RenderFrameProxy to replace the RenderFrame.
|
| @@ -163,6 +167,11 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost {
|
| // Called when an HTML5 notification is closed.
|
| void NotificationClosed(int notification_id);
|
|
|
| + // Sets whether there is an outstanding transition request. This is called at
|
| + // the start of a provisional load for the main frame, and cleared when we
|
| + // hear the response or commit.
|
| + void SetHasPendingTransitionRequest(bool has_pending_request);
|
| +
|
| protected:
|
| friend class RenderFrameHostFactory;
|
|
|
|
|