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