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_ | |
|
Bernhard Bauer
2015/12/14 17:32:36
This header guard isn't correct. Shouldn't there h
Deepak
2015/12/15 04:39:36
Done.
| |
| 6 #define COMPONENTS_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| 7 | |
| 8 namespace user_prefs { | |
| 9 | |
|
gab
2015/12/14 19:29:27
no empty line between consecutive nested namespace
Deepak
2015/12/15 04:39:36
Done.
| |
| 10 namespace tracked { | |
| 11 | |
| 12 extern const char kTrackedPrefHistogramUnchanged[]; | |
| 13 extern const char kTrackedPrefHistogramCleared[]; | |
| 14 extern const char kTrackedPrefHistogramMigratedLegacyDeviceId[]; | |
| 15 extern const char kTrackedPrefHistogramChanged[]; | |
| 16 extern const char kTrackedPrefHistogramInitialized[]; | |
| 17 extern const char kTrackedPrefHistogramTrustedInitialized[]; | |
| 18 extern const char kTrackedPrefHistogramNullInitialized[]; | |
| 19 extern const char kTrackedPrefHistogramWantedReset[]; | |
| 20 extern const char kTrackedPrefHistogramReset[]; | |
| 21 extern const char kTrackedSplitPrefHistogramChanged[]; | |
| 22 } | |
|
Bernhard Bauer
2015/12/14 17:32:37
Empty line before this to match the opening namesp
Deepak
2015/12/15 04:39:36
Done.
| |
| 23 | |
| 24 } // namespace tracked_pref_histogram_names | |
|
Bernhard Bauer
2015/12/14 17:32:37
namespace user_prefs
Deepak
2015/12/15 04:39:36
Done.
| |
| 25 | |
| 26 #endif // COMPONENTS_TRACKED_PREFERENCE_HISTOGRAM_NAMES_H_ | |
| OLD | NEW |