chromium/components/webapps/browser/banners/app_banner_metrics.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/webapps/browser/banners/app_banner_metrics.h"

#include "base/metrics/histogram_functions.h"
#include "base/metrics/histogram_macros.h"
#include "components/webapps/browser/installable/installable_logging.h"
#include "third_party/blink/public/mojom/manifest/display_mode.mojom.h"

namespace webapps {

const char kDismissEventHistogram[] =;
const char kDisplayEventHistogram[] =;
const char kInstallEventHistogram[] =;
const char kUserResponseHistogram[] =;
const char kBeforeInstallEventHistogram[] =;
const char kInstallableStatusCodeHistogram[] =;
const char kInstallDisplayModeHistogram[] =;

void TrackDismissEvent(int event) {}

void TrackDisplayEvent(int event) {}

void TrackInstallEvent(int event) {}

void TrackUserResponse(int event) {}

void TrackBeforeInstallEvent(int event) {}

void TrackInstallableStatusCode(InstallableStatusCode code) {}

void TrackInstallDisplayMode(blink::mojom::DisplayMode display) {}

}  // namespace webapps