summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/landing_view_proxy.js
blob: 99e9819839e48b04af1b962dddf9892a68e39395 (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
// 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_LANDING_PAGE_INTERACTION_METRIC_NAME =
    'FirstRun.NewUserExperience.LandingPageInteraction';

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

const NUX_LANDING_PAGE_INTERACTIONS_COUNT =
    Object.keys(NuxLandingPageInteractions).length;

/** @interface */
export class LandingViewProxy {
  recordPageShown() {}

  recordNavigatedAway() {}

  recordNewUser() {}

  recordExistingUser() {}
}

/** @implements {LandingViewProxy} */
export class LandingViewProxyImpl {
  /** @override */
  recordPageShown() {
    this.recordInteraction_(NuxLandingPageInteractions.PageShown);
  }

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

  /** @override */
  recordNewUser() {
    this.recordInteraction_(NuxLandingPageInteractions.NewUser);
  }

  /** @override */
  recordExistingUser() {
    this.recordInteraction_(NuxLandingPageInteractions.ExistingUser);
  }

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

addSingletonGetter(LandingViewProxyImpl);