| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index c80e1977754e0abbe41499ec838362a20bdc1dac..58207880eb58743a2c044bde03cf5fa886e70513 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -192,6 +192,13 @@ const char kDisableBackgroundNetworking[] = "disable-background-networking";
|
| const char kDisableBlockContentAnimation[] =
|
| "disable-blocked-content-animation";
|
|
|
| +// This switch is used to disable the client-side phishing detection feature.
|
| +// Note that even if client-side phishing detection is enabled, it will only
|
| +// be active if the user has opted in to UMA stats and SafeBrowsing is enabled
|
| +// in the preferences.
|
| +const char kDisableClientSidePhishingDetection[] =
|
| + "disable-client-side-phishing-detection";
|
| +
|
| // Disables establishing a backup TCP connection if a specified timeout is
|
| // exceeded.
|
| const char kDisableConnectBackupJobs[] = "disable-connect-backup-jobs";
|
| @@ -402,13 +409,6 @@ const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs";
|
| // for more background.
|
| const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
|
|
|
| -// In the browser process this switch is used to enable or disable the
|
| -// client-side phishing detection. In the renderer this switch is only enabled
|
| -// if this switch is enabled in the browser and the user has opted in to UMA
|
| -// stats and SafeBrowsing is enabled in the preferences.
|
| -const char kEnableClientSidePhishingDetection[] =
|
| - "enable-client-side-phishing-detection";
|
| -
|
| // At this point, even if client-side phishing detection is enabled we will not,
|
| // by default, display an interstitial if we detected a phishing site. Once
|
| // we are confident that the false-positive rate is as low as expected we can
|
|
|