| Index: chrome/browser/extensions/extension_install_ui.cc
|
| diff --git a/chrome/browser/extensions/extension_install_ui.cc b/chrome/browser/extensions/extension_install_ui.cc
|
| index 105c368de816feca4c3188a18ad8e15e93c1ce94..4c59ef9a25ff4c8fee07be2081784b4db60081f5 100644
|
| --- a/chrome/browser/extensions/extension_install_ui.cc
|
| +++ b/chrome/browser/extensions/extension_install_ui.cc
|
| @@ -26,7 +26,7 @@
|
| #include "chrome/browser/ui/browser_navigator.h"
|
| #include "chrome/browser/ui/browser_window.h"
|
| #include "chrome/browser/ui/simple_message_box.h"
|
| -#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| +#include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| #include "chrome/browser/ui/tabs/tab_strip_model.h"
|
| #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| @@ -475,7 +475,7 @@ void ExtensionInstallUI::ShowThemeInfoBar(const std::string& previous_theme_id,
|
| if (!browser)
|
| return;
|
|
|
| - TabContentsWrapper* tab_contents = browser->GetSelectedTabContentsWrapper();
|
| + TabContents* tab_contents = browser->GetActiveTabContents();
|
| if (!tab_contents)
|
| return;
|
| InfoBarTabHelper* infobar_helper = tab_contents->infobar_tab_helper();
|
| @@ -549,7 +549,7 @@ void ExtensionInstallUI::ShowConfirmation() {
|
| }
|
|
|
| InfoBarDelegate* ExtensionInstallUI::GetNewThemeInstalledInfoBarDelegate(
|
| - TabContentsWrapper* tab_contents,
|
| + TabContents* tab_contents,
|
| const Extension* new_theme,
|
| const std::string& previous_theme_id,
|
| bool previous_using_native_theme) {
|
|
|