| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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 COMPONENTS_USER_PREFS_TRACKED_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| 6 #define COMPONENTS_USER_PREFS_TRACKED_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| 7 | |
| 8 namespace user_prefs { | |
| 9 namespace tracked { | |
| 10 | |
| 11 extern const char kTrackedPrefHistogramUnchanged[]; | |
| 12 extern const char kTrackedPrefHistogramCleared[]; | |
| 13 extern const char kTrackedPrefHistogramMigratedLegacyDeviceId[]; | |
| 14 extern const char kTrackedPrefHistogramChanged[]; | |
| 15 extern const char kTrackedPrefHistogramInitialized[]; | |
| 16 extern const char kTrackedPrefHistogramTrustedInitialized[]; | |
| 17 extern const char kTrackedPrefHistogramNullInitialized[]; | |
| 18 extern const char kTrackedPrefHistogramWantedReset[]; | |
| 19 extern const char kTrackedPrefHistogramReset[]; | |
| 20 extern const char kTrackedSplitPrefHistogramChanged[]; | |
| 21 extern const char kTrackedPrefRegistryValidationSuffix[]; | |
| 22 | |
| 23 } // namespace tracked | |
| 24 } // namespace user_prefs | |
| 25 | |
| 26 #endif // COMPONENTS_USER_PREFS_TRACKED_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| OLD | NEW |