| Index: content/public/browser/navigation_handle.h
|
| diff --git a/content/public/browser/navigation_handle.h b/content/public/browser/navigation_handle.h
|
| index 3118ec61670672698d26d3c394da28a7f7b8de76..496801ef45b10625b693cb25be306516c5f7e58f 100644
|
| --- a/content/public/browser/navigation_handle.h
|
| +++ b/content/public/browser/navigation_handle.h
|
| @@ -64,12 +64,6 @@ class CONTENT_EXPORT NavigationHandle {
|
| // * using window.history.pushState
|
| virtual bool IsRendererInitiated() = 0;
|
|
|
| - // Whether the navigation is synchronous or not. Examples of synchronous
|
| - // navigations are:
|
| - // * reference fragment navigations
|
| - // * pushState/popState
|
| - virtual bool IsSynchronousNavigation() = 0;
|
| -
|
| // Whether the navigation is for an iframe with srcdoc attribute.
|
| virtual bool IsSrcdoc() = 0;
|
|
|
| @@ -137,9 +131,10 @@ class CONTENT_EXPORT NavigationHandle {
|
| // called.
|
| virtual RenderFrameHost* GetRenderFrameHost() = 0;
|
|
|
| - // Whether the navigation happened in the same page. This is only known
|
| - // after the navigation has committed. It is an error to call this method
|
| - // before the navigation has committed.
|
| + // Whether the navigation happened in the same page. Examples of same page
|
| + // navigations are:
|
| + // * reference fragment navigations
|
| + // * pushState/replaceState
|
| virtual bool IsSamePage() = 0;
|
|
|
| // Whether the navigation has encountered a server redirect or not.
|
|
|