| 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 const char kNoStartupWindow[] = "no-startup-window"; | 923 const char kNoStartupWindow[] = "no-startup-window"; |
| 924 | 924 |
| 925 // Shows a desktop notification that the cloud print token has expired and that | 925 // Shows a desktop notification that the cloud print token has expired and that |
| 926 // user needs to re-authenticate. | 926 // user needs to re-authenticate. |
| 927 const char kNotifyCloudPrintTokenExpired[] = "notify-cp-token-expired"; | 927 const char kNotifyCloudPrintTokenExpired[] = "notify-cp-token-expired"; |
| 928 | 928 |
| 929 // Specifies the maximum number of threads to use for running the Proxy | 929 // Specifies the maximum number of threads to use for running the Proxy |
| 930 // Autoconfig (PAC) script. | 930 // Autoconfig (PAC) script. |
| 931 const char kNumPacThreads[] = "num-pac-threads"; | 931 const char kNumPacThreads[] = "num-pac-threads"; |
| 932 | 932 |
| 933 // Refactored (browserless) Panels are on by default in dev/canary/trunk. | |
| 934 // Use this flag to revert to using the old-style (pre-refactor) Panels. | |
| 935 // Flag will be removed after refactor is complete. | |
| 936 const char kOldPanels[] = "old-panels"; | |
| 937 | |
| 938 // Controls whether to use the fancy new scoring (takes into account | 933 // Controls whether to use the fancy new scoring (takes into account |
| 939 // word breaks, does better balancing of topicality, recency, etc.) for | 934 // word breaks, does better balancing of topicality, recency, etc.) for |
| 940 // HistoryQuickProvider. | 935 // HistoryQuickProvider. |
| 941 const char kOmniboxHistoryQuickProviderNewScoring[] = | 936 const char kOmniboxHistoryQuickProviderNewScoring[] = |
| 942 "omnibox-history-quick-provider-new-scoring"; | 937 "omnibox-history-quick-provider-new-scoring"; |
| 943 // The value the kOmniboxHistoryQuickProviderNewScoring switch may have, | 938 // The value the kOmniboxHistoryQuickProviderNewScoring switch may have, |
| 944 // as in "--omnibox-history-quick-provider-new-scoring=1". | 939 // as in "--omnibox-history-quick-provider-new-scoring=1". |
| 945 // 1 means use new scoring. | 940 // 1 means use new scoring. |
| 946 const char kOmniboxHistoryQuickProviderNewScoringEnabled[] = "1"; | 941 const char kOmniboxHistoryQuickProviderNewScoringEnabled[] = "1"; |
| 947 // 0 means use old scoring ( == current behavior as of 6/2012). | 942 // 0 means use old scoring ( == current behavior as of 6/2012). |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1574 | 1569 |
| 1575 // ----------------------------------------------------------------------------- | 1570 // ----------------------------------------------------------------------------- |
| 1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1571 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1577 // | 1572 // |
| 1578 // You were going to just dump your switches here, weren't you? Instead, please | 1573 // You were going to just dump your switches here, weren't you? Instead, please |
| 1579 // put them in alphabetical order above, or in order inside the appropriate | 1574 // put them in alphabetical order above, or in order inside the appropriate |
| 1580 // ifdef at the bottom. The order should match the header. | 1575 // ifdef at the bottom. The order should match the header. |
| 1581 // ----------------------------------------------------------------------------- | 1576 // ----------------------------------------------------------------------------- |
| 1582 | 1577 |
| 1583 } // namespace switches | 1578 } // namespace switches |
| OLD | NEW |