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

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

Issue 358973005: Navigation transitions: Pass is_transition_navigation flag up to the embedder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/navigator_impl.h
diff --git a/content/browser/frame_host/navigator_impl.h b/content/browser/frame_host/navigator_impl.h
index 1aa9a609c09b90bc4a08c2209c8b47074e3c56d3..1e70aad50d53dfa506360d4fa7f99ce1bc6a7d00 100644
--- a/content/browser/frame_host/navigator_impl.h
+++ b/content/browser/frame_host/navigator_impl.h
@@ -27,7 +27,8 @@ class CONTENT_EXPORT NavigatorImpl : public Navigator {
virtual NavigationController* GetController() OVERRIDE;
virtual void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host,
int parent_routing_id,
- const GURL& url) OVERRIDE;
+ const GURL& url,
+ bool is_transition_navigation) OVERRIDE;
virtual void DidFailProvisionalLoadWithError(
RenderFrameHostImpl* render_frame_host,
const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params)
@@ -55,7 +56,8 @@ class CONTENT_EXPORT NavigatorImpl : public Navigator {
const Referrer& referrer,
WindowOpenDisposition disposition,
bool should_replace_current_entry,
- bool user_gesture) OVERRIDE;
+ bool user_gesture,
+ bool is_transition_navigation) OVERRIDE;
virtual void RequestTransferURL(
RenderFrameHostImpl* render_frame_host,
const GURL& url,
@@ -65,7 +67,8 @@ class CONTENT_EXPORT NavigatorImpl : public Navigator {
WindowOpenDisposition disposition,
const GlobalRequestID& transferred_global_request_id,
bool should_replace_current_entry,
- bool user_gesture) OVERRIDE;
+ bool user_gesture,
+ bool is_transition_navigation) OVERRIDE;
private:
virtual ~NavigatorImpl() {}

Powered by Google App Engine
This is Rietveld 408576698