| Index: chrome/app/chrome_main.cc
|
| ===================================================================
|
| --- chrome/app/chrome_main.cc (revision 70263)
|
| +++ chrome/app/chrome_main.cc (working copy)
|
| @@ -33,6 +33,7 @@
|
| #include "chrome/common/logging_chrome.h"
|
| #include "chrome/common/main_function_params.h"
|
| #include "chrome/common/sandbox_init_wrapper.h"
|
| +#include "chrome/common/set_process_title.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "ipc/ipc_switches.h"
|
|
|
| @@ -905,6 +906,10 @@
|
| // as our process name since we exec() via that to be update-safe.
|
| #endif
|
|
|
| +#if defined(OS_POSIX)
|
| + SetProcessTitleFromCommandLine(argv);
|
| +#endif
|
| +
|
| int exit_code = RunNamedProcessTypeMain(process_type, main_params);
|
|
|
| if (SubprocessNeedsResourceBundle(process_type))
|
|
|