| 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 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 1213 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
| 1214 | 1214 |
| 1215 // Causes the process to run as a renderer zygote. | 1215 // Causes the process to run as a renderer zygote. |
| 1216 const char kZygoteProcess[] = "zygote"; | 1216 const char kZygoteProcess[] = "zygote"; |
| 1217 | 1217 |
| 1218 #if defined(OS_CHROMEOS) | 1218 #if defined(OS_CHROMEOS) |
| 1219 // Enable the redirection of viewable document requests to the Google | 1219 // Enable the redirection of viewable document requests to the Google |
| 1220 // Document Viewer. | 1220 // Document Viewer. |
| 1221 const char kEnableGView[] = "enable-gview"; | 1221 const char kEnableGView[] = "enable-gview"; |
| 1222 | 1222 |
| 1223 // Should we show the image based login? | |
| 1224 const char kEnableLoginImages[] = "enable-login-images"; | |
| 1225 | |
| 1226 // Enable Chrome-as-a-login-manager behavior. | 1223 // Enable Chrome-as-a-login-manager behavior. |
| 1227 const char kLoginManager[] = "login-manager"; | 1224 const char kLoginManager[] = "login-manager"; |
| 1228 | 1225 |
| 1229 // Allows to override the first login screen. The value should be the name | 1226 // Allows to override the first login screen. The value should be the name |
| 1230 // of the first login screen to show (see | 1227 // of the first login screen to show (see |
| 1231 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). | 1228 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). |
| 1232 // Ignored if kLoginManager is not specified. | 1229 // Ignored if kLoginManager is not specified. |
| 1233 // TODO(avayvod): Remove when the switch is no longer needed for testing. | 1230 // TODO(avayvod): Remove when the switch is no longer needed for testing. |
| 1234 const char kLoginScreen[] = "login-screen"; | 1231 const char kLoginScreen[] = "login-screen"; |
| 1235 | 1232 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 | 1369 |
| 1373 // ----------------------------------------------------------------------------- | 1370 // ----------------------------------------------------------------------------- |
| 1374 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1371 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1375 // | 1372 // |
| 1376 // You were going to just dump your switches here, weren't you? Instead, | 1373 // You were going to just dump your switches here, weren't you? Instead, |
| 1377 // please put them in alphabetical order above, or in order inside the | 1374 // please put them in alphabetical order above, or in order inside the |
| 1378 // appropriate ifdef at the bottom. The order should match the header. | 1375 // appropriate ifdef at the bottom. The order should match the header. |
| 1379 // ----------------------------------------------------------------------------- | 1376 // ----------------------------------------------------------------------------- |
| 1380 | 1377 |
| 1381 } // namespace switches | 1378 } // namespace switches |
| OLD | NEW |