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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 // Enable content settings based on host *and* plug-in. | 470 // Enable content settings based on host *and* plug-in. |
471 const char kEnableResourceContentSettings[] = | 471 const char kEnableResourceContentSettings[] = |
472 "enable-resource-content-settings"; | 472 "enable-resource-content-settings"; |
473 | 473 |
474 // Enable panels (always on-top docked pop-up windows). | 474 // Enable panels (always on-top docked pop-up windows). |
475 const char kEnablePanels[] = "enable-panels"; | 475 const char kEnablePanels[] = "enable-panels"; |
476 | 476 |
477 // Enable speculative TCP/IP preconnection. | 477 // Enable speculative TCP/IP preconnection. |
478 const char kEnablePreconnect[] = "enable-preconnect"; | 478 const char kEnablePreconnect[] = "enable-preconnect"; |
479 | 479 |
| 480 // Enables the sanitized version of client-side phishing detection, for use by |
| 481 // non-UMA users. Any features containing portions of the URL or page content |
| 482 // are not sent as part of the pingback in this mode. |
| 483 const char kEnableSanitizedClientSidePhishingDetection[] = |
| 484 "enable-sanitized-client-side-phishing-detection"; |
| 485 |
480 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra | 486 // Enable the IsSearchProviderInstalled and InstallSearchProvider with an extra |
481 // parameter to indicate if the provider should be the default. | 487 // parameter to indicate if the provider should be the default. |
482 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; | 488 const char kEnableSearchProviderApiV2[] = "enable-search-provider-api-v2"; |
483 | 489 |
484 // Enable the use of the ShortcutsProvider for autocomplete results. | 490 // Enable the use of the ShortcutsProvider for autocomplete results. |
485 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider"; | 491 const char kEnableShortcutsProvider[] = "enable-shortcuts-provider"; |
486 | 492 |
487 // On platforms that support it, enable smooth scroll animation. | 493 // On platforms that support it, enable smooth scroll animation. |
488 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; | 494 const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; |
489 | 495 |
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 | 1237 |
1232 // ----------------------------------------------------------------------------- | 1238 // ----------------------------------------------------------------------------- |
1233 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1239 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1234 // | 1240 // |
1235 // 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, |
1236 // 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 |
1237 // appropriate ifdef at the bottom. The order should match the header. | 1243 // appropriate ifdef at the bottom. The order should match the header. |
1238 // ----------------------------------------------------------------------------- | 1244 // ----------------------------------------------------------------------------- |
1239 | 1245 |
1240 } // namespace switches | 1246 } // namespace switches |
OLD | NEW |