| 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 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 const char kTestLoadLibcros[] = "test-load-libcros"; | 1144 const char kTestLoadLibcros[] = "test-load-libcros"; |
| 1145 | 1145 |
| 1146 // Specifies the profile to use once a chromeos user is logged in. | 1146 // Specifies the profile to use once a chromeos user is logged in. |
| 1147 const char kLoginProfile[] = "login-profile"; | 1147 const char kLoginProfile[] = "login-profile"; |
| 1148 | 1148 |
| 1149 // Specifies the user which is already logged in. | 1149 // Specifies the user which is already logged in. |
| 1150 const char kLoginUser[] = "login-user"; | 1150 const char kLoginUser[] = "login-user"; |
| 1151 // Specifies a password to be used to login (along with login-user). | 1151 // Specifies a password to be used to login (along with login-user). |
| 1152 const char kLoginPassword[] = "login-password"; | 1152 const char kLoginPassword[] = "login-password"; |
| 1153 | 1153 |
| 1154 // Attempts to perform Chrome OS offline and online login in parallel. |
| 1155 const char kParallelAuth[] = "parallel-auth"; |
| 1156 |
| 1154 // Use the frame layout used in chromeos. | 1157 // Use the frame layout used in chromeos. |
| 1155 const char kChromeosFrame[] = "chromeos-frame"; | 1158 const char kChromeosFrame[] = "chromeos-frame"; |
| 1156 | 1159 |
| 1157 // Use the given language for UI in the input method candidate window. | 1160 // Use the given language for UI in the input method candidate window. |
| 1158 const char kCandidateWindowLang[] = "lang"; | 1161 const char kCandidateWindowLang[] = "lang"; |
| 1159 | 1162 |
| 1160 // Indicates that the browser is in "browse without sign-in" mode. | 1163 // Indicates that the browser is in "browse without sign-in" mode. |
| 1161 // Should completely disable extensions, sync and bookmarks. | 1164 // Should completely disable extensions, sync and bookmarks. |
| 1162 const char kBWSI[] = "bwsi"; | 1165 const char kBWSI[] = "bwsi"; |
| 1163 | 1166 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 | 1263 |
| 1261 // ----------------------------------------------------------------------------- | 1264 // ----------------------------------------------------------------------------- |
| 1262 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1265 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1263 // | 1266 // |
| 1264 // You were going to just dump your switches here, weren't you? Instead, | 1267 // You were going to just dump your switches here, weren't you? Instead, |
| 1265 // please put them in alphabetical order above, or in order inside the | 1268 // please put them in alphabetical order above, or in order inside the |
| 1266 // appropriate ifdef at the bottom. The order should match the header. | 1269 // appropriate ifdef at the bottom. The order should match the header. |
| 1267 // ----------------------------------------------------------------------------- | 1270 // ----------------------------------------------------------------------------- |
| 1268 | 1271 |
| 1269 } // namespace switches | 1272 } // namespace switches |
| OLD | NEW |