From 2ab1ecb73cabe4000f9ddfeb73ef62a3e21d5cde Mon Sep 17 00:00:00 2001 From: "isherman@chromium.org" Date: Tue, 14 Jun 2011 23:38:18 +0000 Subject: Add some more metrics/logging to dig into Autofill server experiments data discrepancy. * Log the form's server experiment id at form submission time. * Prior to receiving a server response to a query request, set the experiment id to "unknown experiment" BUG=none TEST=unit_tests --gtest_filter=AutofillMetrics.* Review URL: http://codereview.chromium.org/7147008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89094 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/autofill/autofill_metrics.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'chrome/browser/autofill/autofill_metrics.h') diff --git a/chrome/browser/autofill/autofill_metrics.h b/chrome/browser/autofill/autofill_metrics.h index 2584317..22bd74b 100644 --- a/chrome/browser/autofill/autofill_metrics.h +++ b/chrome/browser/autofill/autofill_metrics.h @@ -116,7 +116,12 @@ class AutofillMetrics { virtual void LogAddressSuggestionsCount(size_t num_suggestions) const; // Logs the experiment id corresponding to a server query response. - virtual void LogServerExperimentId(const std::string& experiment_id) const; + virtual void LogServerExperimentIdForQuery( + const std::string& experiment_id) const; + + // Logs the experiment id corresponding to an upload to the server. + virtual void LogServerExperimentIdForUpload( + const std::string& experiment_id) const; private: DISALLOW_COPY_AND_ASSIGN(AutofillMetrics); -- cgit v1.1