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 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1205 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 1205 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
1206 | 1206 |
1207 // Causes the process to run as a renderer zygote. | 1207 // Causes the process to run as a renderer zygote. |
1208 const char kZygoteProcess[] = "zygote"; | 1208 const char kZygoteProcess[] = "zygote"; |
1209 | 1209 |
1210 #if defined(OS_CHROMEOS) | 1210 #if defined(OS_CHROMEOS) |
1211 // Enable the redirection of viewable document requests to the Google | 1211 // Enable the redirection of viewable document requests to the Google |
1212 // Document Viewer. | 1212 // Document Viewer. |
1213 const char kEnableGView[] = "enable-gview"; | 1213 const char kEnableGView[] = "enable-gview"; |
1214 | 1214 |
1215 // Should we show the image based login? | |
1216 const char kEnableLoginImages[] = "enable-login-images"; | |
Dmitry Polukhin
2010/12/14 14:06:18
You will also need to remove it from /sbin/session
| |
1217 | |
1218 // Enable Chrome-as-a-login-manager behavior. | 1215 // Enable Chrome-as-a-login-manager behavior. |
1219 const char kLoginManager[] = "login-manager"; | 1216 const char kLoginManager[] = "login-manager"; |
1220 | 1217 |
1221 // Allows to override the first login screen. The value should be the name | 1218 // Allows to override the first login screen. The value should be the name |
1222 // of the first login screen to show (see | 1219 // of the first login screen to show (see |
1223 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | 1220 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). |
1224 // Ignored if kLoginManager is not specified. | 1221 // Ignored if kLoginManager is not specified. |
1225 // TODO(avayvod): Remove when the switch is no longer needed for testing. | 1222 // TODO(avayvod): Remove when the switch is no longer needed for testing. |
1226 const char kLoginScreen[] = "login-screen"; | 1223 const char kLoginScreen[] = "login-screen"; |
1227 | 1224 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1377 | 1374 |
1378 // ----------------------------------------------------------------------------- | 1375 // ----------------------------------------------------------------------------- |
1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1376 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1380 // | 1377 // |
1381 // You were going to just dump your switches here, weren't you? Instead, | 1378 // You were going to just dump your switches here, weren't you? Instead, |
1382 // please put them in alphabetical order above, or in order inside the | 1379 // please put them in alphabetical order above, or in order inside the |
1383 // appropriate ifdef at the bottom. The order should match the header. | 1380 // appropriate ifdef at the bottom. The order should match the header. |
1384 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
1385 | 1382 |
1386 } // namespace switches | 1383 } // namespace switches |
OLD | NEW |