OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; | 366 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; |
367 | 367 |
368 // Enables AeroPeek for each tab. (This switch only works on Windows 7). | 368 // Enables AeroPeek for each tab. (This switch only works on Windows 7). |
369 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; | 369 const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; |
370 | 370 |
371 // Enable the inclusion of non-standard ports when generating the Kerberos SPN | 371 // Enable the inclusion of non-standard ports when generating the Kerberos SPN |
372 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 372 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
373 // for more background. | 373 // for more background. |
374 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 374 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
375 | 375 |
| 376 // Disable both pre- and auto-login for services attached to a GAIA account |
| 377 // even when the GAIA credentials are available through sync. |
| 378 const char kDisableAutoLogin[] = "disable-auto-login"; |
| 379 |
376 // This flag enables UI for clearing server data. Temporarily in place | 380 // This flag enables UI for clearing server data. Temporarily in place |
377 // until there's a server endpoint deployed. | 381 // until there's a server endpoint deployed. |
378 const char kEnableClearServerData[] = "enable-clear-server-data"; | 382 const char kEnableClearServerData[] = "enable-clear-server-data"; |
379 | 383 |
380 // Enable click-to-play for blocked plug-ins. | 384 // Enable click-to-play for blocked plug-ins. |
381 const char kEnableClickToPlay[] = "enable-click-to-play"; | 385 const char kEnableClickToPlay[] = "enable-click-to-play"; |
382 | 386 |
383 // This applies only when the process type is "service". Enables the | 387 // This applies only when the process type is "service". Enables the |
384 // Cloud Print Proxy component within the service process. | 388 // Cloud Print Proxy component within the service process. |
385 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 389 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1176 | 1180 |
1177 // ----------------------------------------------------------------------------- | 1181 // ----------------------------------------------------------------------------- |
1178 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1182 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1179 // | 1183 // |
1180 // You were going to just dump your switches here, weren't you? Instead, | 1184 // You were going to just dump your switches here, weren't you? Instead, |
1181 // please put them in alphabetical order above, or in order inside the | 1185 // please put them in alphabetical order above, or in order inside the |
1182 // appropriate ifdef at the bottom. The order should match the header. | 1186 // appropriate ifdef at the bottom. The order should match the header. |
1183 // ----------------------------------------------------------------------------- | 1187 // ----------------------------------------------------------------------------- |
1184 | 1188 |
1185 } // namespace switches | 1189 } // namespace switches |
OLD | NEW |