diff options
Diffstat (limited to 'chrome/browser/message_window.cc')
-rw-r--r-- | chrome/browser/message_window.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/message_window.cc b/chrome/browser/message_window.cc index 0375a5d..3bfced7 100644 --- a/chrome/browser/message_window.cc +++ b/chrome/browser/message_window.cc @@ -209,7 +209,11 @@ LRESULT MessageWindow::OnCopyData(HWND hwnd, const COPYDATASTRUCT* cds) { NOTREACHED(); return TRUE; } - BrowserInit::ProcessCommandLine(cur_dir, prefs, false, profile, NULL); + + // Run the browser startup sequence again, with the command line of the + // signalling process. + BrowserInit::ProcessCommandLine(parsed_command_line, cur_dir, prefs, false, + profile, NULL); return TRUE; } return TRUE; |