blob: 138489dd30ce8e05f5515e1313ab7a7792a8ef2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2013 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.
#ifndef APPS_METRICS_NAMES_H_
#define APPS_METRICS_NAMES_H_
namespace apps {
// Histogram metrics individual values.
enum AppLauncherPromoHistogramValues {
APP_LAUNCHER_PROMO_ALREADY_INSTALLED,
APP_LAUNCHER_PROMO_SHOWN,
APP_LAUNCHER_PROMO_DISMISSED,
APP_LAUNCHER_PROMO_LEARN_MORE,
APP_LAUNCHER_PROMO_MAX
};
} // namespace apps
#endif // APPS_METRICS_NAMES_H_
|