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 86e05d622e81c21864a26aee22a6ffa9d77ed854..fdbeacda9e367a86b746423735943c4d4dc71995 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.h |
| +++ b/content/browser/frame_host/render_frame_host_impl.h |
| @@ -18,6 +18,7 @@ |
| #include "content/public/browser/render_frame_host.h" |
| #include "content/public/common/javascript_message_type.h" |
| #include "content/public/common/page_transition_types.h" |
| +#include "net/http/http_response_headers.h" |
| #include "third_party/WebKit/public/web/WebTextDirection.h" |
| class GURL; |
| @@ -46,6 +47,7 @@ struct ContextMenuParams; |
| struct GlobalRequestID; |
| struct Referrer; |
| struct ShowDesktopNotificationHostMsgParams; |
| +struct TransitionLayerData; |
|
jochen (gone - plz use gerrit)
2014/07/24 09:05:27
not required
Zhen Wang
2014/07/24 15:29:55
Done.
|
| class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost { |
| public: |
| @@ -123,7 +125,10 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost { |
| // Called on the current RenderFrameHost when the network response is first |
| // receieved. |
| - void OnDeferredAfterResponseStarted(const GlobalRequestID& global_request_id); |
| + void OnDeferredAfterResponseStarted( |
| + const GlobalRequestID& global_request_id, |
| + const scoped_refptr<net::HttpResponseHeaders>& headers, |
| + const GURL& url); |
| // 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 |