| Index: ios/chrome/browser/interstitials/ios_chrome_controller_client.mm
 | 
| diff --git a/ios/chrome/browser/interstitials/ios_chrome_controller_client.mm b/ios/chrome/browser/interstitials/ios_chrome_controller_client.mm
 | 
| index 2d5658a03e48369a388bfe8a521816778794e92d..fa640eae5a9a29b6f868782bb1ddded14614fb95 100644
 | 
| --- a/ios/chrome/browser/interstitials/ios_chrome_controller_client.mm
 | 
| +++ b/ios/chrome/browser/interstitials/ios_chrome_controller_client.mm
 | 
| @@ -11,6 +11,7 @@
 | 
|  #include "ios/chrome/browser/pref_names.h"
 | 
|  #include "ios/web/public/interstitials/web_interstitial.h"
 | 
|  #import "ios/web/public/navigation_manager.h"
 | 
| +#include "ios/web/public/reload_type.h"
 | 
|  #include "ios/web/public/web_state/web_state.h"
 | 
|  
 | 
|  #if !defined(__has_feature) || !__has_feature(objc_arc)
 | 
| @@ -54,7 +55,8 @@
 | 
|  }
 | 
|  
 | 
|  void IOSChromeControllerClient::Reload() {
 | 
| -  web_state_->GetNavigationManager()->Reload(true);
 | 
| +  web_state_->GetNavigationManager()->Reload(web::ReloadType::NORMAL,
 | 
| +                                             true /*check_for_repost*/);
 | 
|  }
 | 
|  
 | 
|  void IOSChromeControllerClient::OpenUrlInCurrentTab(const GURL& url) {
 | 
| 
 |