| 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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 "enable-search-button-in-omnibox-always"; | 676 "enable-search-button-in-omnibox-always"; |
| 677 const char kEnableSearchButtonInOmniboxForStr[] = | 677 const char kEnableSearchButtonInOmniboxForStr[] = |
| 678 "enable-search-button-in-omnibox-for-str"; | 678 "enable-search-button-in-omnibox-for-str"; |
| 679 const char kEnableSearchButtonInOmniboxForStrOrIip[] = | 679 const char kEnableSearchButtonInOmniboxForStrOrIip[] = |
| 680 "enable-search-button-in-omnibox-for-str-or-iip"; | 680 "enable-search-button-in-omnibox-for-str-or-iip"; |
| 681 | 681 |
| 682 // Certificate Transparency: Enable showing the SCT viewer when an SSL | 682 // Certificate Transparency: Enable showing the SCT viewer when an SSL |
| 683 // certificate is accompanied by, or contains, SCTs. | 683 // certificate is accompanied by, or contains, SCTs. |
| 684 const char kEnableSignedCertificateTimestampsViewer[] = "enable-sct-viewer"; | 684 const char kEnableSignedCertificateTimestampsViewer[] = "enable-sct-viewer"; |
| 685 | 685 |
| 686 // Enable settings in a separate browser window per profile. |
| 687 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 688 |
| 686 // Enable SPDY/4 alpha 2. This is a temporary testing flag. | 689 // Enable SPDY/4 alpha 2. This is a temporary testing flag. |
| 687 const char kEnableSpdy4a2[] = "enable-spdy4a2"; | 690 const char kEnableSpdy4a2[] = "enable-spdy4a2"; |
| 688 | 691 |
| 689 // Enables auto correction for misspelled words. | 692 // Enables auto correction for misspelled words. |
| 690 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; | 693 const char kEnableSpellingAutoCorrect[] = "enable-spelling-auto-correct"; |
| 691 | 694 |
| 692 // Enables participation in the field trial for user feedback to spelling | 695 // Enables participation in the field trial for user feedback to spelling |
| 693 // service. | 696 // service. |
| 694 const char kEnableSpellingFeedbackFieldTrial[] = | 697 const char kEnableSpellingFeedbackFieldTrial[] = |
| 695 "enable-spelling-feedback-field-trial"; | 698 "enable-spelling-feedback-field-trial"; |
| (...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1542 | 1545 |
| 1543 // ----------------------------------------------------------------------------- | 1546 // ----------------------------------------------------------------------------- |
| 1544 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1547 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1545 // | 1548 // |
| 1546 // You were going to just dump your switches here, weren't you? Instead, please | 1549 // You were going to just dump your switches here, weren't you? Instead, please |
| 1547 // put them in alphabetical order above, or in order inside the appropriate | 1550 // put them in alphabetical order above, or in order inside the appropriate |
| 1548 // ifdef at the bottom. The order should match the header. | 1551 // ifdef at the bottom. The order should match the header. |
| 1549 // ----------------------------------------------------------------------------- | 1552 // ----------------------------------------------------------------------------- |
| 1550 | 1553 |
| 1551 } // namespace switches | 1554 } // namespace switches |
| OLD | NEW |