| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 // Enable content settings based on host *and* plug-in. | 490 // Enable content settings based on host *and* plug-in. |
| 491 const char kEnableResourceContentSettings[] = | 491 const char kEnableResourceContentSettings[] = |
| 492 "enable-resource-content-settings"; | 492 "enable-resource-content-settings"; |
| 493 | 493 |
| 494 // Enable panels (always on-top docked pop-up windows). | 494 // Enable panels (always on-top docked pop-up windows). |
| 495 const char kEnablePanels[] = "enable-panels"; | 495 const char kEnablePanels[] = "enable-panels"; |
| 496 | 496 |
| 497 // Enable speculative TCP/IP preconnection. | 497 // Enable speculative TCP/IP preconnection. |
| 498 const char kEnablePreconnect[] = "enable-preconnect"; | 498 const char kEnablePreconnect[] = "enable-preconnect"; |
| 499 | 499 |
| 500 // Enables the sanitized version of client-side phishing detection, for use by | |
| 501 // non-UMA users. Any features containing portions of the URL or page content | |
| 502 // are not sent as part of the pingback in this mode. | |
| 503 const char kEnableSanitizedClientSidePhishingDetection[] = | |
| 504 "enable-sanitized-client-side-phishing-detection"; | |
| 505 | |
| 506 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 500 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
| 507 // parameter to indicate if the provider should be the default. | 501 // parameter to indicate if the provider should be the default. |
| 508 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 502 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
| 509 | 503 |
| 510 // Enable the use of the ShortcutsProvider for autocomplete results. | 504 // Enable the use of the ShortcutsProvider for autocomplete results. |
| 511 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider"; | 505 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider"; |
| 512 | 506 |
| 513 // On platforms that support it, enable smooth scroll animation. | 507 // On platforms that support it, enable smooth scroll animation. |
| 514 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 508 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
| 515 | 509 |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1243 | 1237 |
| 1244 // ----------------------------------------------------------------------------- | 1238 // ----------------------------------------------------------------------------- |
| 1245 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1239 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1246 // | 1240 // |
| 1247 // You were going to just dump your switches here, weren't you? Instead, | 1241 // You were going to just dump your switches here, weren't you? Instead, |
| 1248 // please put them in alphabetical order above, or in order inside the | 1242 // please put them in alphabetical order above, or in order inside the |
| 1249 // appropriate ifdef at the bottom. The order should match the header. | 1243 // appropriate ifdef at the bottom. The order should match the header. |
| 1250 // ----------------------------------------------------------------------------- | 1244 // ----------------------------------------------------------------------------- |
| 1251 | 1245 |
| 1252 } // namespace switches | 1246 } // namespace switches |
| OLD | NEW |