OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 // Enable Chrome-as-a-login-manager behavior. | 1022 // Enable Chrome-as-a-login-manager behavior. |
1023 const char kLoginManager[] = "login-manager"; | 1023 const char kLoginManager[] = "login-manager"; |
1024 // Allows to override the first login screen. The value should be the name | 1024 // Allows to override the first login screen. The value should be the name |
1025 // of the first login screen to show (see | 1025 // of the first login screen to show (see |
1026 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | 1026 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). |
1027 // Ignored if kLoginManager is not specified. | 1027 // Ignored if kLoginManager is not specified. |
1028 // TODO(avayvod): Remove when the switch is no longer needed for testing. | 1028 // TODO(avayvod): Remove when the switch is no longer needed for testing. |
1029 const char kLoginScreen[] = "login-screen"; | 1029 const char kLoginScreen[] = "login-screen"; |
1030 // Allows control over the initial login screen size. Pass width,height. | 1030 // Allows control over the initial login screen size. Pass width,height. |
1031 const char kLoginScreenSize[] = "login-screen-size"; | 1031 const char kLoginScreenSize[] = "login-screen-size"; |
1032 | |
1033 // Attempts to load libcros and validate it, then exits. A nonzero return code | 1032 // Attempts to load libcros and validate it, then exits. A nonzero return code |
1034 // means the library could not be loaded correctly. | 1033 // means the library could not be loaded correctly. |
1035 const char kTestLoadLibcros[] = "test-load-libcros"; | 1034 const char kTestLoadLibcros[] = "test-load-libcros"; |
1036 | 1035 |
1037 // Specifies the profile to use once a chromeos user is logged in. | 1036 // Specifies the profile to use once a chromeos user is logged in. |
1038 const char kLoginProfile[] = "login-profile"; | 1037 const char kLoginProfile[] = "login-profile"; |
1039 | 1038 |
1040 // Specifies the user which is already logged in. | 1039 // Specifies the user which is already logged in. |
1041 const char kLoginUser[] = "login-user"; | 1040 const char kLoginUser[] = "login-user"; |
| 1041 // Specifies a password to be used to login (along with login-user). |
| 1042 const char kLoginPassword[] = "login-password"; |
1042 | 1043 |
1043 // Use the frame layout used in chromeos. | 1044 // Use the frame layout used in chromeos. |
1044 const char kChromeosFrame[] = "chromeos-frame"; | 1045 const char kChromeosFrame[] = "chromeos-frame"; |
1045 | 1046 |
1046 // Set logging output to the given file. | 1047 // Set logging output to the given file. |
1047 const char kChromeosLogToFile[] = "logtofile"; | 1048 const char kChromeosLogToFile[] = "logtofile"; |
1048 | 1049 |
1049 // Indicates that the browser is in "browse without sign-in" mode. | 1050 // Indicates that the browser is in "browse without sign-in" mode. |
1050 // Should completely disable extensions, sync and bookmarks. | 1051 // Should completely disable extensions, sync and bookmarks. |
1051 const char kBWSI[] = "bwsi"; | 1052 const char kBWSI[] = "bwsi"; |
1052 | 1053 |
| 1054 // Indicates that stub implementations of the libcros library should be used. |
| 1055 // This is typically used to test the chromeos build of chrome on the desktop. |
| 1056 const char kStubCros[] = "stub-cros"; |
1053 #endif | 1057 #endif |
1054 | 1058 |
1055 #if defined(OS_LINUX) | 1059 #if defined(OS_LINUX) |
1056 // Specify the amount the trackpad should scroll by. | 1060 // Specify the amount the trackpad should scroll by. |
1057 const char kScrollPixels[] = "scroll-pixels"; | 1061 const char kScrollPixels[] = "scroll-pixels"; |
1058 #endif | 1062 #endif |
1059 | 1063 |
1060 #if defined(OS_MACOSX) || defined(OS_WIN) | 1064 #if defined(OS_MACOSX) || defined(OS_WIN) |
1061 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 1065 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
1062 // instead of NSS for SSL. | 1066 // instead of NSS for SSL. |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1139 | 1143 |
1140 // ----------------------------------------------------------------------------- | 1144 // ----------------------------------------------------------------------------- |
1141 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1145 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1142 // | 1146 // |
1143 // You were going to just dump your switches here, weren't you? Instead, | 1147 // You were going to just dump your switches here, weren't you? Instead, |
1144 // please put them in alphabetical order above, or in order inside the | 1148 // please put them in alphabetical order above, or in order inside the |
1145 // appropriate ifdef at the bottom. The order should match the header. | 1149 // appropriate ifdef at the bottom. The order should match the header. |
1146 // ----------------------------------------------------------------------------- | 1150 // ----------------------------------------------------------------------------- |
1147 | 1151 |
1148 } // namespace switches | 1152 } // namespace switches |
OLD | NEW |