| Index: apps/metrics_names.h
|
| diff --git a/apps/metrics_names.h b/apps/metrics_names.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7cc8f1bbfb90c1828a5381219f82a816d55a4516
|
| --- /dev/null
|
| +++ b/apps/metrics_names.h
|
| @@ -0,0 +1,24 @@
|
| +// 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 name.
|
| +extern const char kAppLauncherPromoHistogram[];
|
| +
|
| +// 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_
|
|
|