| Index: ios/web/web_state/ui/crw_web_controller.mm
|
| diff --git a/ios/web/web_state/ui/crw_web_controller.mm b/ios/web/web_state/ui/crw_web_controller.mm
|
| index 835be5ea5fd887c005feda5c46e9d193c16995d6..20eb3c3c788ee8dff294274e37704a2ddcea7bc6 100644
|
| --- a/ios/web/web_state/ui/crw_web_controller.mm
|
| +++ b/ios/web/web_state/ui/crw_web_controller.mm
|
| @@ -1339,6 +1339,7 @@ const NSTimeInterval kSnapshotOverlayTransition = 0.5;
|
| - (void)pushStateWithPageURL:(const GURL&)pageURL
|
| stateObject:(NSString*)stateObject
|
| transition:(ui::PageTransition)transition {
|
| + _webStateImpl->OnProvisionalNavigationStarted(pageURL);
|
| [[self sessionController] pushNewItemWithURL:pageURL
|
| stateObject:stateObject
|
| transition:transition];
|
| @@ -1351,6 +1352,7 @@ const NSTimeInterval kSnapshotOverlayTransition = 0.5;
|
|
|
| - (void)replaceStateWithPageURL:(const GURL&)pageURL
|
| stateObject:(NSString*)stateObject {
|
| + _webStateImpl->OnProvisionalNavigationStarted(pageURL);
|
| [[self sessionController] updateCurrentItemWithURL:pageURL
|
| stateObject:stateObject];
|
| std::unique_ptr<web::NavigationContext> context =
|
|
|