Index: chrome/common/chrome_switches.cc |
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc |
index 96710fe433e5168a4ce25d1cdd56d5ae98ef9922..62c6b2bcbab151e93a66e988db43da2481b91f67 100644 |
--- a/chrome/common/chrome_switches.cc |
+++ b/chrome/common/chrome_switches.cc |
@@ -1029,7 +1029,6 @@ const char kLoginManager[] = "login-manager"; |
const char kLoginScreen[] = "login-screen"; |
// Allows control over the initial login screen size. Pass width,height. |
const char kLoginScreenSize[] = "login-screen-size"; |
- |
// Attempts to load libcros and validate it, then exits. A nonzero return code |
// means the library could not be loaded correctly. |
const char kTestLoadLibcros[] = "test-load-libcros"; |
@@ -1039,6 +1038,8 @@ const char kLoginProfile[] = "login-profile"; |
// Specifies the user which is already logged in. |
const char kLoginUser[] = "login-user"; |
+// Specifies a password to be used to login (along with login-user). |
+const char kLoginPassword[] = "login-password"; |
// Use the frame layout used in chromeos. |
const char kChromeosFrame[] = "chromeos-frame"; |
@@ -1050,6 +1051,9 @@ const char kChromeosLogToFile[] = "logtofile"; |
// Should completely disable extensions, sync and bookmarks. |
const char kBWSI[] = "bwsi"; |
+// Indicates that stub implementations of the libcros library should be used. |
+// This is typically used to test the chromeos build of chrome on the desktop. |
+const char kStubCros[] = "stub-cros"; |
#endif |
#if defined(OS_LINUX) |