Index: chrome/browser/ui/views/infobars/infobar_container.cc |
=================================================================== |
--- chrome/browser/ui/views/infobars/infobar_container.cc (revision 80169) |
+++ chrome/browser/ui/views/infobars/infobar_container.cc (working copy) |
@@ -60,12 +60,12 @@ |
} |
// Now that everything is up to date, signal the delegate to re-layout. |
- OnInfoBarAnimated(true); |
+ OnInfoBarSizeChanged(true); |
} |
-void InfoBarContainer::OnInfoBarAnimated(bool done) { |
+void InfoBarContainer::OnInfoBarSizeChanged(bool is_animating) { |
if (delegate_) |
- delegate_->InfoBarContainerSizeChanged(!done); |
+ delegate_->InfoBarContainerSizeChanged(is_animating); |
} |
void InfoBarContainer::RemoveDelegate(InfoBarDelegate* delegate) { |