summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/autofill_metrics.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-01 01:01:52 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-01 01:01:52 +0000
commitf5c722b9e89c91e0844afeb29d841f02ed5c472f (patch)
treedc4cf7bf3f2e53391b737eaa1f1b8b2d27846f8f /chrome/browser/autofill/autofill_metrics.cc
parent52eed12eccb82f5402aaf044c49ce101d02fce6c (diff)
downloadchromium_src-f5c722b9e89c91e0844afeb29d841f02ed5c472f.zip
chromium_src-f5c722b9e89c91e0844afeb29d841f02ed5c472f.tar.gz
chromium_src-f5c722b9e89c91e0844afeb29d841f02ed5c472f.tar.bz2
autofill: Rename AutoFillMetrics to AutofillMetrics.
BUG=72758 TEST=compiled locally and trybots Review URL: http://codereview.chromium.org/6602001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76330 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_metrics.cc')
-rw-r--r--chrome/browser/autofill/autofill_metrics.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/autofill/autofill_metrics.cc b/chrome/browser/autofill/autofill_metrics.cc
index da30064..713d8a3 100644
--- a/chrome/browser/autofill/autofill_metrics.cc
+++ b/chrome/browser/autofill/autofill_metrics.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -6,20 +6,20 @@
#include "base/metrics/histogram.h"
-AutoFillMetrics::AutoFillMetrics() {
+AutofillMetrics::AutofillMetrics() {
}
-AutoFillMetrics::~AutoFillMetrics() {
+AutofillMetrics::~AutofillMetrics() {
}
-void AutoFillMetrics::Log(ServerQueryMetric metric) const {
+void AutofillMetrics::Log(ServerQueryMetric metric) const {
DCHECK(metric < NUM_SERVER_QUERY_METRICS);
UMA_HISTOGRAM_ENUMERATION("AutoFill.ServerQueryResponse", metric,
NUM_SERVER_QUERY_METRICS);
}
-void AutoFillMetrics::Log(QualityMetric metric,
+void AutofillMetrics::Log(QualityMetric metric,
const std::string& experiment_id) const {
DCHECK(metric < NUM_QUALITY_METRICS);