diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-12 21:40:34 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-12 21:40:34 +0000 |
commit | 7ab9307a4226b1a76933721c4e62e605c2117b7b (patch) | |
tree | 9d2a665b8cfa2e801ae9a9c86966aa072d49b6bb | |
parent | 55df0ca235876a26e3cf51f59f9794bb20c4997b (diff) | |
download | chromium_src-7ab9307a4226b1a76933721c4e62e605c2117b7b.zip chromium_src-7ab9307a4226b1a76933721c4e62e605c2117b7b.tar.gz chromium_src-7ab9307a4226b1a76933721c4e62e605c2117b7b.tar.bz2 |
Update default Autofill upload rate to 20% (was 1%).
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6824067
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81311 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/autofill/autofill_manager.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc index 93f32a9..e8d18b8 100644 --- a/chrome/browser/autofill/autofill_manager.cc +++ b/chrome/browser/autofill/autofill_manager.cc @@ -54,8 +54,8 @@ namespace { // We only send a fraction of the forms to upload server. // The rate for positive/negative matches potentially could be different. -const double kAutofillPositiveUploadRateDefaultValue = 0.01; -const double kAutofillNegativeUploadRateDefaultValue = 0.01; +const double kAutofillPositiveUploadRateDefaultValue = 0.20; +const double kAutofillNegativeUploadRateDefaultValue = 0.20; const string16::value_type kCreditCardPrefix[] = {'*', 0}; |