summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/welcome/google_apps/google_apps_metrics_proxy.js
blob: 529d4d632221b4982df53096f95d919c844dc2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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.

import {addSingletonGetter} from 'chrome://resources/js/cr.m.js';
import {ModuleMetricsProxyImpl, NuxGoogleAppsInteractions} from '../shared/module_metrics_proxy.js';

export class GoogleAppsMetricsProxyImpl extends ModuleMetricsProxyImpl {
  constructor() {
    super(
        'FirstRun.NewUserExperience.GoogleAppsInteraction',
        NuxGoogleAppsInteractions);
  }
}

addSingletonGetter(GoogleAppsMetricsProxyImpl);