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

Unified Diff: chrome/browser/ui/collected_cookies_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/collected_cookies_infobar_delegate.cc
diff --git a/chrome/browser/ui/collected_cookies_infobar_delegate.cc b/chrome/browser/ui/collected_cookies_infobar_delegate.cc
index 30388deb4d83fea688f1df37bfb394a002e9e577..e464bd5759f167c691b63c9d39ab297e9a83d67b 100644
--- a/chrome/browser/ui/collected_cookies_infobar_delegate.cc
+++ b/chrome/browser/ui/collected_cookies_infobar_delegate.cc
@@ -58,6 +58,6 @@ base::string16 CollectedCookiesInfoBarDelegate::GetButtonLabel(
bool CollectedCookiesInfoBarDelegate::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