Chromium Code Reviews| 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_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| 6 #define COMPONENTS_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| 7 | |
| 8 namespace tracked_pref_histogram_names { | |
|
Bernhard Bauer
2015/12/14 09:52:16
I think the best namespace for this would be user_
Deepak
2015/12/14 10:16:18
I agree, tracked_pref_histogram_names namespace is
| |
| 9 | |
| 10 extern const char kTrackedPrefHistogramUnchanged[]; | |
| 11 extern const char kTrackedPrefHistogramCleared[]; | |
| 12 extern const char kTrackedPrefHistogramMigratedLegacyDeviceId[]; | |
| 13 extern const char kTrackedPrefHistogramChanged[]; | |
| 14 extern const char kTrackedPrefHistogramInitialized[]; | |
| 15 extern const char kTrackedPrefHistogramTrustedInitialized[]; | |
| 16 extern const char kTrackedPrefHistogramNullInitialized[]; | |
| 17 extern const char kTrackedPrefHistogramWantedReset[]; | |
| 18 extern const char kTrackedPrefHistogramReset[]; | |
| 19 extern const char kTrackedSplitPrefHistogramChanged[]; | |
| 20 | |
| 21 } // namespace tracked_pref_histogram_names | |
| 22 | |
| 23 #endif // COMPONENTS_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| OLD | NEW |