summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/google_apps/google_apps_metrics_proxy.js
blob: 77886462fcd4c468da49401f462d3c4b4b940604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2019 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('welcome', function() {
  class GoogleAppsMetricsProxyImpl extends welcome.ModuleMetricsProxyImpl {
    constructor() {
      super(
          'FirstRun.NewUserExperience.GoogleAppsInteraction',
          welcome.NuxGoogleAppsInteractions);
    }
  }

  cr.addSingletonGetter(GoogleAppsMetricsProxyImpl);

  return {
    GoogleAppsMetricsProxyImpl: GoogleAppsMetricsProxyImpl,
  };
});