1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_INTERSTITIALS_SECURITY_INTERSTITIAL_METRICS_HELPER_H_
6 #define CHROME_BROWSER_INTERSTITIALS_SECURITY_INTERSTITIAL_METRICS_HELPER_H_
10 #include "base/task/cancelable_task_tracker.h"
11 #include "base/time/time.h"
18 namespace extensions
{
19 class ExperienceSamplingEvent
;
22 // Most of the security interstitials share a common layout and set of
23 // choices. SecurityInterstitialMetricsHelper is intended to help the security
24 // interstitials record user choices in a common way via METRICS histograms
25 // and RAPPOR metrics.
26 class SecurityInterstitialMetricsHelper
{
28 // These enums are used for histograms. Don't reorder, delete, or insert
29 // elements. New elements should be added at the end (right before the max).
30 enum SecurityInterstitialDecision
{
37 enum SecurityInterstitialInteraction
{
45 SET_EXTENDED_REPORTING_ENABLED
,
46 SET_EXTENDED_REPORTING_DISABLED
,
47 EXTENDED_REPORTING_IS_ENABLED
,
48 REPORT_PHISHING_ERROR
,
52 enum RapporReporting
{
54 // Only use this for safe-browsing interstitials.
55 REPORT_RAPPOR_FOR_SAFE_BROWSING
,
60 // url: URL of page that triggered the interstitial. Only origin is used.
61 // uma_prefix: Histogram prefix for UMA.
62 // examples: "phishing", "ssl_overridable"
63 // rappor_prefix: Metric prefix for Rappor.
64 // examples: "phishing", "ssl2"
65 // rappor_reporting: Used to skip rappor rapporting if desired.
66 // sampling_event_name: Event name for Experience Sampling.
67 // e.g. "phishing_interstitial_"
68 SecurityInterstitialMetricsHelper(content::WebContents
* web_contents
,
70 const std::string
& uma_prefix
,
71 const std::string
& rappor_prefix
,
72 RapporReporting rappor_reporting
,
73 const std::string
& sampling_event_name
);
74 ~SecurityInterstitialMetricsHelper();
76 // Record a user decision or interaction to the appropriate UMA histogram
77 // and potentially in a RAPPOR metric.
78 void RecordUserDecision(SecurityInterstitialDecision decision
);
79 void RecordUserInteraction(SecurityInterstitialInteraction interaction
);
82 // Used to query the HistoryService to see if the URL is in history.
83 void OnGotHistoryCount(bool success
, int num_visits
, base::Time first_visit
);
85 content::WebContents
* web_contents_
;
86 const GURL request_url_
;
87 const std::string uma_prefix_
;
88 const std::string rappor_prefix_
;
89 const RapporReporting rappor_reporting_
;
90 const std::string sampling_event_name_
;
92 base::CancelableTaskTracker request_tracker_
;
93 #if defined(ENABLE_EXTENSIONS)
94 scoped_ptr
<extensions::ExperienceSamplingEvent
> sampling_event_
;
97 DISALLOW_COPY_AND_ASSIGN(SecurityInterstitialMetricsHelper
);
100 #endif // CHROME_BROWSER_INTERSTITIALS_SECURITY_INTERSTITIAL_METRICS_HELPER_H_