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

Unified Diff: chrome/browser/infobars/confirm_infobar_delegate.cc

Issue 190063006: Infobar Componentization Proof of Concept (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fixes Created 6 years, 9 months 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/infobars/confirm_infobar_delegate.cc
diff --git a/chrome/browser/infobars/confirm_infobar_delegate.cc b/chrome/browser/infobars/confirm_infobar_delegate.cc
index 9b9ac8a513d7f1cb0f5f56ecd4c79abfbc15f872..19bbc401aca0fc1692fe3a108302b975faac5770 100644
--- a/chrome/browser/infobars/confirm_infobar_delegate.cc
+++ b/chrome/browser/infobars/confirm_infobar_delegate.cc
@@ -50,9 +50,9 @@ ConfirmInfoBarDelegate::ConfirmInfoBarDelegate()
}
bool ConfirmInfoBarDelegate::ShouldExpireInternal(
- const content::LoadCommittedDetails& details) const {
+ const NavigationDetails& details) const {
return !details.did_replace_entry &&
- InfoBarDelegate::ShouldExpireInternal(details);
+ InfoBarDelegate::ShouldExpireInternal(details);
Peter Kasting 2014/03/18 18:29:17 Nit: Old indenting was correct
}
// ConfirmInfoBarDelegate::CreateInfoBar() is implemented in platform-specific

Powered by Google App Engine
This is Rietveld 408576698