| Index: chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| diff --git a/chrome/browser/ui/startup/autolaunch_prompt_win.cc b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| index b3dd711edb72680df00d39643a6bfb3a7bc045ca..fb85d4fcaac2a3758df80d19d4fe92bc15917f91 100644
|
| --- a/chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| +++ b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
|
| @@ -15,7 +15,7 @@
|
| #include "chrome/browser/tab_contents/confirm_infobar_delegate.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/browser/ui/browser_finder.h"
|
| -#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| +#include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| @@ -154,7 +154,7 @@ void CheckAutoLaunchCallback(Profile* profile) {
|
| // We must not use GetLastActive here because this is at Chrome startup and
|
| // no window might have been made active yet. We'll settle for any window.
|
| Browser* browser = browser::FindAnyBrowser(profile, true);
|
| - TabContentsWrapper* tab = browser->GetSelectedTabContentsWrapper();
|
| + TabContents* tab = browser->GetActiveTabContents();
|
|
|
| // Don't show the info-bar if there are already info-bars showing.
|
| InfoBarTabHelper* infobar_helper = tab->infobar_tab_helper();
|
|
|