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
{
48 enum RapporReporting
{
54 // url: URL of page that triggered the interstitial. Only origin is used.
55 // uma_prefix: Histogram prefix for UMA.
56 // examples: "phishing", "ssl_overridable"
57 // rappor_prefix: Metric prefix for Rappor.
58 // examples: "phishing", "ssl"
59 // rappor_reporting: Used to skip rappor rapporting if desired.
60 // sampling_event_name: Event name for Experience Sampling.
61 // e.g. "phishing_interstitial_"
62 SecurityInterstitialMetricsHelper(content::WebContents
* web_contents
,
64 const std::string
& uma_prefix
,
65 const std::string
& rappor_prefix
,
66 RapporReporting rappor_reporting
,
67 const std::string
& sampling_event_name
);
68 ~SecurityInterstitialMetricsHelper();
70 // Record a user decision or interaction to the appropriate UMA histogram
71 // and potentially in a RAPPOR metric.
72 void RecordUserDecision(SecurityInterstitialDecision decision
);
73 void RecordUserInteraction(SecurityInterstitialInteraction interaction
);
76 // Used to query the HistoryService to see if the URL is in history.
77 void OnGotHistoryCount(bool success
, int num_visits
, base::Time first_visit
);
79 content::WebContents
* web_contents_
;
80 const GURL request_url_
;
81 const std::string uma_prefix_
;
82 const std::string rappor_prefix_
;
83 const RapporReporting rappor_reporting_
;
84 const std::string sampling_event_name_
;
86 base::CancelableTaskTracker request_tracker_
;
87 #if defined(ENABLE_EXTENSIONS)
88 scoped_ptr
<extensions::ExperienceSamplingEvent
> sampling_event_
;
91 DISALLOW_COPY_AND_ASSIGN(SecurityInterstitialMetricsHelper
);
94 #endif // CHROME_BROWSER_INTERSTITIALS_SECURITY_INTERSTITIAL_METRICS_HELPER_H_