| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef APPS_METRICS_NAMES_H_ | |
| 6 #define APPS_METRICS_NAMES_H_ | |
| 7 | |
| 8 namespace apps { | |
| 9 | |
| 10 // Histogram metrics individual values. | |
| 11 enum AppLauncherPromoHistogramValues { | |
| 12 APP_LAUNCHER_PROMO_ALREADY_INSTALLED, | |
| 13 APP_LAUNCHER_PROMO_SHOWN, | |
| 14 APP_LAUNCHER_PROMO_DISMISSED, | |
| 15 APP_LAUNCHER_PROMO_LEARN_MORE, | |
| 16 APP_LAUNCHER_PROMO_MAX | |
| 17 }; | |
| 18 | |
| 19 } // namespace apps | |
| 20 | |
| 21 #endif // APPS_METRICS_NAMES_H_ | |
| OLD | NEW |