OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 | 356 |
357 extern const char kMetricsClientID[]; | 357 extern const char kMetricsClientID[]; |
358 extern const char kMetricsSessionID[]; | 358 extern const char kMetricsSessionID[]; |
359 extern const char kMetricsClientIDTimestamp[]; | 359 extern const char kMetricsClientIDTimestamp[]; |
360 extern const char kMetricsReportingEnabled[]; | 360 extern const char kMetricsReportingEnabled[]; |
361 extern const char kMetricsInitialLogsXml[]; | 361 extern const char kMetricsInitialLogsXml[]; |
362 extern const char kMetricsInitialLogsProto[]; | 362 extern const char kMetricsInitialLogsProto[]; |
363 extern const char kMetricsOngoingLogsXml[]; | 363 extern const char kMetricsOngoingLogsXml[]; |
364 extern const char kMetricsOngoingLogsProto[]; | 364 extern const char kMetricsOngoingLogsProto[]; |
365 | 365 |
| 366 extern const char kVariationsSeed[]; |
| 367 |
366 extern const char kProfileLastUsed[]; | 368 extern const char kProfileLastUsed[]; |
367 extern const char kProfilesLastActive[]; | 369 extern const char kProfilesLastActive[]; |
368 extern const char kProfilesNumCreated[]; | 370 extern const char kProfilesNumCreated[]; |
369 extern const char kProfileInfoCache[]; | 371 extern const char kProfileInfoCache[]; |
370 extern const char kProfileCreatedByVersion[]; | 372 extern const char kProfileCreatedByVersion[]; |
371 | 373 |
372 extern const char kProfileMetrics[]; | 374 extern const char kProfileMetrics[]; |
373 extern const char kProfilePrefix[]; | 375 extern const char kProfilePrefix[]; |
374 | 376 |
375 extern const char kStabilityExitedCleanly[]; | 377 extern const char kStabilityExitedCleanly[]; |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 #endif | 700 #endif |
699 | 701 |
700 extern const char kInManagedMode[]; | 702 extern const char kInManagedMode[]; |
701 | 703 |
702 extern const char kNetworkProfileWarningsLeft[]; | 704 extern const char kNetworkProfileWarningsLeft[]; |
703 extern const char kNetworkProfileLastWarningTime[]; | 705 extern const char kNetworkProfileLastWarningTime[]; |
704 | 706 |
705 } // namespace prefs | 707 } // namespace prefs |
706 | 708 |
707 #endif // CHROME_COMMON_PREF_NAMES_H_ | 709 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |