| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 399 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
| 400 // for more background. | 400 // for more background. |
| 401 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 401 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 402 | 402 |
| 403 // With this flag set, Chrome will occasionally prompt the user to volunteer | 403 // With this flag set, Chrome will occasionally prompt the user to volunteer |
| 404 // Autofill usage data beyond what is collected by default. This is data that | 404 // Autofill usage data beyond what is collected by default. This is data that |
| 405 // we expect to be helpful for debugging, but that we do not want to send up | 405 // we expect to be helpful for debugging, but that we do not want to send up |
| 406 // automatically due to privacy concerns. | 406 // automatically due to privacy concerns. |
| 407 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; | 407 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; |
| 408 | 408 |
| 409 // Enables the pre- and auto-login features. When a user signs in to sync, |
| 410 // the browser's cookie jar is pre-filled with GAIA cookies. When the user |
| 411 // visits a GAIA login page, an info bar can help the user login. |
| 412 const char kEnableAutologin[] = "enable-autologin"; |
| 413 |
| 409 // This flag enables UI for clearing server data. Temporarily in place | 414 // This flag enables UI for clearing server data. Temporarily in place |
| 410 // until there's a server endpoint deployed. | 415 // until there's a server endpoint deployed. |
| 411 const char kEnableClearServerData[] = "enable-clear-server-data"; | 416 const char kEnableClearServerData[] = "enable-clear-server-data"; |
| 412 | 417 |
| 413 // Enable click-to-play for blocked plug-ins. | 418 // Enable click-to-play for blocked plug-ins. |
| 414 const char kEnableClickToPlay[] = "enable-click-to-play"; | 419 const char kEnableClickToPlay[] = "enable-click-to-play"; |
| 415 | 420 |
| 416 // This applies only when the process type is "service". Enables the | 421 // This applies only when the process type is "service". Enables the |
| 417 // Cloud Print Proxy component within the service process. | 422 // Cloud Print Proxy component within the service process. |
| 418 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 423 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| (...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 | 1249 |
| 1245 // ----------------------------------------------------------------------------- | 1250 // ----------------------------------------------------------------------------- |
| 1246 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1251 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1247 // | 1252 // |
| 1248 // You were going to just dump your switches here, weren't you? Instead, | 1253 // You were going to just dump your switches here, weren't you? Instead, |
| 1249 // please put them in alphabetical order above, or in order inside the | 1254 // please put them in alphabetical order above, or in order inside the |
| 1250 // appropriate ifdef at the bottom. The order should match the header. | 1255 // appropriate ifdef at the bottom. The order should match the header. |
| 1251 // ----------------------------------------------------------------------------- | 1256 // ----------------------------------------------------------------------------- |
| 1252 | 1257 |
| 1253 } // namespace switches | 1258 } // namespace switches |
| OLD | NEW |