Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 387703004: Navigation transitions: Parse out transition-entering-stylesheet link headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit fix Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..b5f3e032dd5ad6925f9c35588a3d76f42b681629 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;
@@ -123,7 +124,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
« no previous file with comments | « content/browser/frame_host/render_frame_host_delegate.h ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698