| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 459 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
| 460 | 460 |
| 461 // Enables the pre- and auto-login features. When a user signs in to sync, the | 461 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 462 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 462 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 463 // GAIA login page, an info bar can help the user login. | 463 // GAIA login page, an info bar can help the user login. |
| 464 const char kEnableAutologin[] = "enable-autologin"; | 464 const char kEnableAutologin[] = "enable-autologin"; |
| 465 | 465 |
| 466 // Enables the benchmarking extensions. | 466 // Enables the benchmarking extensions. |
| 467 const char kEnableBenchmarking[] = "enable-benchmarking"; | 467 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 468 | 468 |
| 469 // Enables breakpad for testing purposes. |
| 470 const char kEnableBreakpad[] = "enable-breakpad"; |
| 471 |
| 469 // This applies only when the process type is "service". Enables the Cloud | 472 // This applies only when the process type is "service". Enables the Cloud |
| 470 // Print Proxy component within the service process. | 473 // Print Proxy component within the service process. |
| 471 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 474 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| 472 | 475 |
| 473 // Enables fetching the user's contacts from Google and showing them in the | 476 // Enables fetching the user's contacts from Google and showing them in the |
| 474 // Chrome OS apps list. | 477 // Chrome OS apps list. |
| 475 const char kEnableContacts[] = "enable-contacts"; | 478 const char kEnableContacts[] = "enable-contacts"; |
| 476 | 479 |
| 477 // Enables web developers to create apps for Chrome without using crx packages. | 480 // Enables web developers to create apps for Chrome without using crx packages. |
| 478 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; | 481 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; |
| (...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1620 | 1623 |
| 1621 // ----------------------------------------------------------------------------- | 1624 // ----------------------------------------------------------------------------- |
| 1622 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1625 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1623 // | 1626 // |
| 1624 // You were going to just dump your switches here, weren't you? Instead, please | 1627 // You were going to just dump your switches here, weren't you? Instead, please |
| 1625 // put them in alphabetical order above, or in order inside the appropriate | 1628 // put them in alphabetical order above, or in order inside the appropriate |
| 1626 // ifdef at the bottom. The order should match the header. | 1629 // ifdef at the bottom. The order should match the header. |
| 1627 // ----------------------------------------------------------------------------- | 1630 // ----------------------------------------------------------------------------- |
| 1628 | 1631 |
| 1629 } // namespace switches | 1632 } // namespace switches |
| OLD | NEW |