| Index: ios/chrome/browser/ui/browser_view_controller.mm
|
| diff --git a/ios/chrome/browser/ui/browser_view_controller.mm b/ios/chrome/browser/ui/browser_view_controller.mm
|
| index cf8e9d41d368fd22e2ca27a27d40771f3d2fddd7..4750bd221a2ae8e5f7d2b95d98107c5e27c6e2e0 100644
|
| --- a/ios/chrome/browser/ui/browser_view_controller.mm
|
| +++ b/ios/chrome/browser/ui/browser_view_controller.mm
|
| @@ -4614,6 +4614,11 @@ class BrowserBookmarkModelBridge : public bookmarks::BookmarkModelObserver {
|
| [self uninstallDelegatesForTab:oldTab];
|
| [self installDelegatesForTab:newTab];
|
|
|
| + if (_infoBarContainer) {
|
| + infobars::InfoBarManager* infoBarManager = [newTab infoBarManager];
|
| + _infoBarContainer->ChangeInfoBarManager(infoBarManager);
|
| + }
|
| +
|
| // Add |newTab|'s view to the hierarchy if it's the current Tab.
|
| if (self.active && model.currentTab == newTab)
|
| [self displayTab:newTab isNewSelection:NO];
|
|
|