Index: chrome/browser/browser_init.cc |
diff --git a/chrome/browser/browser_init.cc b/chrome/browser/browser_init.cc |
index 237ff952a52fe79523a2b22f051b539b10a092ef..dd798155ed91ff772d198a8858fa49bd4cd8da8d 100644 |
--- a/chrome/browser/browser_init.cc |
+++ b/chrome/browser/browser_init.cc |
@@ -1038,8 +1038,10 @@ bool BrowserInit::ProcessCmdLineImpl(const CommandLine& command_line, |
#if defined(OS_CHROMEOS) |
// The browser will be launched after the user logs in. |
- if (command_line.HasSwitch(switches::kLoginManager)) |
+ if (command_line.HasSwitch(switches::kLoginManager) || |
+ command_line.HasSwitch(switches::kLoginPassword)) { |
silent_launch = true; |
+ } |
#endif |
// If we don't want to launch a new browser window or tab (in the case |