| Index: chrome/browser/sessions/session_restore.cc
|
| diff --git a/chrome/browser/sessions/session_restore.cc b/chrome/browser/sessions/session_restore.cc
|
| index a14c22d2fa11de16d4d8eb4dd50c0200c0134fac..fbc183020d2081e571b984f34514ab71cc440e6c 100644
|
| --- a/chrome/browser/sessions/session_restore.cc
|
| +++ b/chrome/browser/sessions/session_restore.cc
|
| @@ -277,7 +277,7 @@ void TabLoader::LoadNextTab() {
|
| tab->LoadIfNecessary();
|
| content::WebContents* contents = tab->GetWebContents();
|
| if (contents) {
|
| - Browser* browser = browser::FindBrowserWithWebContents(contents);
|
| + Browser* browser = chrome::FindBrowserWithWebContents(contents);
|
| if (browser && chrome::GetActiveWebContents(browser) != contents) {
|
| // By default tabs are marked as visible. As only the active tab is
|
| // visible we need to explicitly tell non-active tabs they are hidden.
|
| @@ -1173,7 +1173,7 @@ void SessionRestore::RestoreForeignSessionTab(
|
| content::WebContents* source_web_contents,
|
| const SessionTab& tab,
|
| WindowOpenDisposition disposition) {
|
| - Browser* browser = browser::FindBrowserWithWebContents(source_web_contents);
|
| + Browser* browser = chrome::FindBrowserWithWebContents(source_web_contents);
|
| Profile* profile = browser->profile();
|
| std::vector<GURL> gurls;
|
| SessionRestoreImpl restorer(profile, browser, true, false, false, gurls);
|
|
|