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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
553 | 553 |
554 // Enables the inclusion of non-standard ports when generating the Kerberos SPN | 554 // Enables the inclusion of non-standard ports when generating the Kerberos SPN |
555 // in response to a Negotiate challenge. See | 555 // in response to a Negotiate challenge. See |
556 // HttpAuthHandlerNegotiate::CreateSPN for more background. | 556 // HttpAuthHandlerNegotiate::CreateSPN for more background. |
557 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 557 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
558 | 558 |
559 // Enable using a public suffix based domain matching for autofill of passwords. | 559 // Enable using a public suffix based domain matching for autofill of passwords. |
560 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = | 560 const char kEnablePasswordAutofillPublicSuffixDomainMatching[] = |
561 "enable-password-autofill-public-suffix-domain-matching"; | 561 "enable-password-autofill-public-suffix-domain-matching"; |
562 | 562 |
563 // Enables the pre- and auto-login features. When a user signs in to sync, the | |
564 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | |
565 // GAIA login page, an info bar can help the user login. | |
566 const char kEnableAutologin[] = "enable-autologin"; | |
567 | |
568 // Enables the benchmarking extensions. | 563 // Enables the benchmarking extensions. |
569 const char kEnableBenchmarking[] = "enable-benchmarking"; | 564 const char kEnableBenchmarking[] = "enable-benchmarking"; |
570 | 565 |
571 // Enables client hints, which adds hints about browser state to HTTP requests. | 566 // Enables client hints, which adds hints about browser state to HTTP requests. |
572 const char kEnableClientHints[] = "enable-client-hints"; | 567 const char kEnableClientHints[] = "enable-client-hints"; |
573 | 568 |
574 // Enables the multi-level undo system for bookmarks. | 569 // Enables the multi-level undo system for bookmarks. |
575 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; | 570 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; |
576 | 571 |
577 // This applies only when the process type is "service". Enables the Cloud | 572 // This applies only when the process type is "service". Enables the Cloud |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1650 | 1645 |
1651 // ----------------------------------------------------------------------------- | 1646 // ----------------------------------------------------------------------------- |
1652 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1647 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1653 // | 1648 // |
1654 // You were going to just dump your switches here, weren't you? Instead, please | 1649 // You were going to just dump your switches here, weren't you? Instead, please |
1655 // put them in alphabetical order above, or in order inside the appropriate | 1650 // put them in alphabetical order above, or in order inside the appropriate |
1656 // ifdef at the bottom. The order should match the header. | 1651 // ifdef at the bottom. The order should match the header. |
1657 // ----------------------------------------------------------------------------- | 1652 // ----------------------------------------------------------------------------- |
1658 | 1653 |
1659 } // namespace switches | 1654 } // namespace switches |
OLD | NEW |