| Index: chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
|
| diff --git a/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm b/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
|
| index 94e5cbd8a427add7806308bcf392858b188bc6b0..66757a754a444a7c864717a0352e37757c627d47 100644
|
| --- a/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
|
| +++ b/chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/i18n/rtl.h"
|
| #include "base/utf_string_conversions.h"
|
| +#include "chrome/browser/infobars/infobar_tab_helper.h"
|
| #include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
|
| #include "chrome/browser/tab_contents/simple_alert_infobar_delegate.h"
|
| #include "chrome/browser/ui/browser.h"
|
| @@ -43,7 +44,7 @@ static void ShowGenericExtensionInstalledInfoBar(
|
| l10n_util::GetStringUTF16(IDS_EXTENSION_INSTALLED_MANAGE_INFO_MAC);
|
| InfoBarDelegate* delegate = new SimpleAlertInfoBarDelegate(
|
| wrapper->tab_contents(), new gfx::Image(new SkBitmap(icon)), msg, true);
|
| - wrapper->AddInfoBar(delegate);
|
| + wrapper->infobar_tab_helper()->AddInfoBar(delegate);
|
| }
|
|
|
| namespace browser {
|
|
|