Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7765)

Unified Diff: chrome/browser/ui/website_settings/website_settings_infobar_delegate.cc

Issue 2561983002: NavigationController: Reload methods migration (Closed)
Patch Set: merge master Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/website_settings/website_settings_infobar_delegate.cc
diff --git a/chrome/browser/ui/website_settings/website_settings_infobar_delegate.cc b/chrome/browser/ui/website_settings/website_settings_infobar_delegate.cc
index ea5337661bff0034e810c11dd717997de44566bc..227e595674c0ce1c6bb824f2356ca459316711a7 100644
--- a/chrome/browser/ui/website_settings/website_settings_infobar_delegate.cc
+++ b/chrome/browser/ui/website_settings/website_settings_infobar_delegate.cc
@@ -60,6 +60,6 @@ base::string16 WebsiteSettingsInfoBarDelegate::GetButtonLabel(
bool WebsiteSettingsInfoBarDelegate::Accept() {
content::WebContents* web_contents =
InfoBarService::WebContentsFromInfoBar(infobar());
- web_contents->GetController().Reload(true);
+ web_contents->GetController().Reload(content::ReloadType::NORMAL, true);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698