summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/welcome/onboarding_welcome/email_interstitial_proxy.js
blob: 786a1d10fd6b49cdf3c6ab6c49bac501bd38affd (plain)
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
// Copyright 2018 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.

cr.define('nux', function() {
  const NUX_EMAIL_INTERSTITIAL_INTERACTION_METRIC_NAME =
      'FirstRun.NewUserExperience.EmailInterstitialInteraction';

  /**
   * NuxEmailInterstitialInteractions enum.
   * These values are persisted to logs and should not be renumbered or re-used.
   * See tools/metrics/histograms/enums.xml.
   * @enum {number}
   */
  const NuxEmailInterstitialInteractions = {
    PageShown: 0,
    NavigatedAway: 1,
    Skip: 2,
    Next: 3,
  };

  const NUX_EMAIL_INTERSTITIAL_INTERACTIONS_COUNT =
      Object.keys(NuxEmailInterstitialInteractions).length;

  /** @interface */
  class EmailInterstitialProxy {
    recordPageShown() {}

    recordNavigatedAway() {}

    recordSkip() {}

    recordNext() {}
  }

  /** @implements {nux.EmailInterstitialProxy} */
  class EmailInterstitialProxyImpl {
    /** @override */
    recordPageShown() {
      this.recordInteraction_(NuxEmailInterstitialInteractions.PageShown);
    }

    /** @override */
    recordNavigatedAway() {
      this.recordInteraction_(NuxEmailInterstitialInteractions.NavigatedAway);
    }

    /** @override */
    recordSkip() {
      this.recordInteraction_(NuxEmailInterstitialInteractions.Skip);
    }

    /** @override */
    recordNext() {
      this.recordInteraction_(NuxEmailInterstitialInteractions.Next);
    }

    /**
     * @param {number} interaction
     * @private
     */
    recordInteraction_(interaction) {
      chrome.metricsPrivate.recordEnumerationValue(
          NUX_EMAIL_INTERSTITIAL_INTERACTION_METRIC_NAME, interaction,
          NUX_EMAIL_INTERSTITIAL_INTERACTIONS_COUNT);
    }
  }

  cr.addSingletonGetter(EmailInterstitialProxyImpl);

  return {
    EmailInterstitialProxy: EmailInterstitialProxy,
    EmailInterstitialProxyImpl: EmailInterstitialProxyImpl,
  };
});