1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
// 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.
#include "chrome/browser/autofill/autofill_metrics.h"
#include "base/logging.h"
#include "base/metrics/histogram.h"
namespace {
void LogUMAHistogramEnumeration(const std::string& name,
int sample,
int boundary_value) {
// We can't use the UMA_HISTOGRAM_ENUMERATION macro here because the histogram
// name can vary over the duration of the program.
// Note that this leaks memory; that is expected behavior.
base::Histogram* counter =
base::LinearHistogram::FactoryGet(
name,
1,
boundary_value,
boundary_value + 1,
base::Histogram::kUmaTargetedHistogramFlag);
counter->Add(sample);
}
} // namespace
AutofillMetrics::AutofillMetrics() {
}
AutofillMetrics::~AutofillMetrics() {
}
void AutofillMetrics::Log(CreditCardInfoBarMetric metric) const {
DCHECK(metric < NUM_CREDIT_CARD_INFO_BAR_METRICS);
UMA_HISTOGRAM_ENUMERATION("Autofill.CreditCardInfoBar", metric,
NUM_CREDIT_CARD_INFO_BAR_METRICS);
}
void AutofillMetrics::Log(HeuristicTypeQualityMetric metric) const {
DCHECK(metric < NUM_HEURISTIC_TYPE_QUALITY_METRICS);
UMA_HISTOGRAM_ENUMERATION("Autofill.Quality.HeuristicType", metric,
NUM_HEURISTIC_TYPE_QUALITY_METRICS);
}
void AutofillMetrics::Log(PredictedTypeQualityMetric metric,
const std::string& experiment_id) const {
DCHECK(metric < NUM_PREDICTED_TYPE_QUALITY_METRICS);
std::string histogram_name = "Autofill.Quality.PredictedType";
if (!experiment_id.empty())
histogram_name += "_" + experiment_id;
LogUMAHistogramEnumeration(histogram_name, metric,
NUM_PREDICTED_TYPE_QUALITY_METRICS);
}
void AutofillMetrics::Log(QualityMetric metric,
const std::string& experiment_id) const {
DCHECK(metric < NUM_QUALITY_METRICS);
std::string histogram_name = "Autofill.Quality";
if (!experiment_id.empty())
histogram_name += "_" + experiment_id;
LogUMAHistogramEnumeration(histogram_name, metric, NUM_QUALITY_METRICS);
}
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(ServerTypeQualityMetric metric,
const std::string& experiment_id) const {
DCHECK(metric < NUM_SERVER_TYPE_QUALITY_METRICS);
std::string histogram_name = "Autofill.Quality.ServerType";
if (!experiment_id.empty())
histogram_name += "_" + experiment_id;
LogUMAHistogramEnumeration(histogram_name, metric,
NUM_SERVER_TYPE_QUALITY_METRICS);
}
void AutofillMetrics::LogStoredProfileCount(size_t num_profiles) const {
UMA_HISTOGRAM_COUNTS("Autofill.StoredProfileCount", num_profiles);
}
void AutofillMetrics::LogAddressSuggestionsCount(size_t num_suggestions) const {
UMA_HISTOGRAM_COUNTS("Autofill.AddressSuggestionsCount", num_suggestions);
}
|