| Index: ios/web_view/internal/cwv_web_view.mm
|
| diff --git a/ios/web_view/internal/cwv_web_view.mm b/ios/web_view/internal/cwv_web_view.mm
|
| index c454bb3c66b972cdb86825f9aa9af0d54a6c04c1..ff7c2d1e01182d1fec1f846744d6a9de1582f80c 100644
|
| --- a/ios/web_view/internal/cwv_web_view.mm
|
| +++ b/ios/web_view/internal/cwv_web_view.mm
|
| @@ -12,6 +12,7 @@
|
| #include "base/strings/sys_string_conversions.h"
|
| #import "ios/web/public/navigation_manager.h"
|
| #include "ios/web/public/referrer.h"
|
| +#include "ios/web/public/reload_type.h"
|
| #import "ios/web/public/web_state/context_menu_params.h"
|
| #import "ios/web/public/web_state/js/crw_js_injection_receiver.h"
|
| #import "ios/web/public/web_state/ui/crw_web_delegate.h"
|
| @@ -131,7 +132,7 @@ - (void)goForward {
|
| }
|
|
|
| - (void)reload {
|
| - _webState->GetNavigationManager()->Reload(true);
|
| + _webState->GetNavigationManager()->Reload(web::ReloadType::NORMAL, true);
|
| }
|
|
|
| - (void)stopLoading {
|
|
|