summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/signin_view_proxy.js
blob: 43266ea4036a1e976983c7568e5690924d381486 (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.

import {addSingletonGetter} from 'chrome://resources/js/cr.m.js';

const NUX_SIGNIN_VIEW_INTERACTION_METRIC_NAME =
    'FirstRun.NewUserExperience.SignInInterstitialInteraction';

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

const NUX_SIGNIN_VIEW_INTERACTIONS_COUNT =
    Object.keys(NuxSignInInterstitialInteractions).length;

/** @interface */
export class SigninViewProxy {
  recordPageShown() {}
  recordNavigatedAway() {}
  recordNavigatedAwayThroughBrowserHistory() {}
  recordSkip() {}
  recordSignIn() {}
}

/** @implements {SigninViewProxy} */
export class SigninViewProxyImpl {
  /** @override */
  recordPageShown() {
    this.recordInteraction_(NuxSignInInterstitialInteractions.PageShown);
  }

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

  /** @override */
  recordNavigatedAwayThroughBrowserHistory() {
    this.recordInteraction_(
        NuxSignInInterstitialInteractions.NavigatedAwayThroughBrowserHistory);
  }

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

  /** @override */
  recordSignIn() {
    this.recordInteraction_(NuxSignInInterstitialInteractions.SignIn);
  }

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

addSingletonGetter(SigninViewProxyImpl);