| Index: ios/web/interstitials/web_interstitial_impl.mm
|
| diff --git a/ios/web/interstitials/web_interstitial_impl.mm b/ios/web/interstitials/web_interstitial_impl.mm
|
| index 4187248f05abc395d9c488a8ba14d1e31b82d500..30698e685af337157ee9d24329ae96206422b708 100644
|
| --- a/ios/web/interstitials/web_interstitial_impl.mm
|
| +++ b/ios/web/interstitials/web_interstitial_impl.mm
|
| @@ -10,6 +10,7 @@
|
| #import "ios/web/navigation/navigation_manager_impl.h"
|
| #import "ios/web/public/interstitials/web_interstitial_delegate.h"
|
| #import "ios/web/public/navigation_manager.h"
|
| +#include "ios/web/public/reload_type.h"
|
| #import "ios/web/web_state/web_state_impl.h"
|
|
|
| #if !defined(__has_feature) || !__has_feature(objc_arc)
|
| @@ -93,7 +94,7 @@
|
| NSUserDefaults* user_defaults = [NSUserDefaults standardUserDefaults];
|
| if (![user_defaults boolForKey:@"PendingIndexNavigationDisabled"]) {
|
| // Reload last committed entry.
|
| - nav_manager->Reload(true /* check_for_repost */);
|
| + nav_manager->Reload(ReloadType::NORMAL, true /* check_for_repost */);
|
| }
|
|
|
| delete this;
|
|
|