| Index: chrome/browser/ui/browser_init.cc
|
| diff --git a/chrome/browser/ui/browser_init.cc b/chrome/browser/ui/browser_init.cc
|
| index 1760d46b30708d76259caa718985b1367d18f4f7..a20c607b2eb6131f10e79b0e0820353b4c3e204f 100644
|
| --- a/chrome/browser/ui/browser_init.cc
|
| +++ b/chrome/browser/ui/browser_init.cc
|
| @@ -813,7 +813,7 @@ bool BrowserInit::LaunchWithProfile::OpenApplicationTab(Profile* profile) {
|
|
|
| RecordCmdLineAppHistogram();
|
|
|
| - TabContents* app_tab = Browser::OpenApplicationTab(profile, extension,
|
| + TabContents* app_tab = Browser::OpenApplicationTab(profile, extension, GURL(),
|
| NEW_FOREGROUND_TAB);
|
| return (app_tab != NULL);
|
| }
|
| @@ -842,7 +842,7 @@ bool BrowserInit::LaunchWithProfile::OpenApplicationWindow(Profile* profile) {
|
|
|
| RecordCmdLineAppHistogram();
|
| TabContents* tab_in_app_window = Browser::OpenApplication(
|
| - profile, extension, launch_container, NEW_WINDOW);
|
| + profile, extension, launch_container, GURL(), NEW_WINDOW);
|
| return (tab_in_app_window != NULL);
|
| }
|
|
|
|
|