diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 04:01:15 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 04:01:15 +0000 |
commit | c6956e2007b7268a814d49c1cbb375a9952b12cb (patch) | |
tree | a0d78da8e60942f769f560879cc059fca3abf063 /chrome/browser/autofill/form_structure.cc | |
parent | a1643545a1ec3b4eb7b9a6bf083f4668da124524 (diff) | |
download | chromium_src-c6956e2007b7268a814d49c1cbb375a9952b12cb.zip chromium_src-c6956e2007b7268a814d49c1cbb375a9952b12cb.tar.gz chromium_src-c6956e2007b7268a814d49c1cbb375a9952b12cb.tar.bz2 |
Add Autofill metric logging for uploads corresponding to forms with no server response.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7216006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89973 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/form_structure.cc')
-rw-r--r-- | chrome/browser/autofill/form_structure.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autofill/form_structure.cc b/chrome/browser/autofill/form_structure.cc index e981394..66a5d04 100644 --- a/chrome/browser/autofill/form_structure.cc +++ b/chrome/browser/autofill/form_structure.cc @@ -93,7 +93,7 @@ FormStructure::FormStructure(const FormData& form) target_url_(form.action), autofill_count_(0), upload_required_(USE_UPLOAD_RATES), - server_experiment_id_("unknown experiment") { + server_experiment_id_("no server response") { // Copy the form fields. std::vector<webkit_glue::FormField>::const_iterator field; for (field = form.fields.begin(); |