| 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() {}
|
|
|