Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: chrome/common/pref_names.h

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 extern const char kEnableUnrestrictedSSL3Fallback[]; 414 extern const char kEnableUnrestrictedSSL3Fallback[];
415 extern const char kEnableMemoryInfo[]; 415 extern const char kEnableMemoryInfo[];
416 416
417 extern const char kGLVendorString[]; 417 extern const char kGLVendorString[];
418 extern const char kGLRendererString[]; 418 extern const char kGLRendererString[];
419 extern const char kGLVersionString[]; 419 extern const char kGLVersionString[];
420 420
421 extern const char kEulaAccepted[]; 421 extern const char kEulaAccepted[];
422 422
423 extern const char kMetricsClientID[]; 423 extern const char kMetricsClientID[];
424 extern const char kMetricsSecretClientID[];
424 extern const char kMetricsSessionID[]; 425 extern const char kMetricsSessionID[];
425 extern const char kMetricsLowEntropySource[]; 426 extern const char kMetricsLowEntropySource[];
426 extern const char kMetricsPermutedEntropyCache[]; 427 extern const char kMetricsPermutedEntropyCache[];
427 extern const char kMetricsClientIDTimestamp[]; 428 extern const char kMetricsClientIDTimestamp[];
428 extern const char kMetricsReportingEnabled[]; 429 extern const char kMetricsReportingEnabled[];
429 // Android has it's own metric / crash reporting implemented in Android 430 // Android has it's own metric / crash reporting implemented in Android
430 // Java code so kMetricsReportingEnabled doesn't make sense. We use this 431 // Java code so kMetricsReportingEnabled doesn't make sense. We use this
431 // to inform crashes_ui that we have enabled crash reporting. 432 // to inform crashes_ui that we have enabled crash reporting.
432 #if defined(OS_ANDROID) 433 #if defined(OS_ANDROID)
433 extern const char kCrashReportingEnabled[]; 434 extern const char kCrashReportingEnabled[];
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 918
918 extern const char kWatchdogExtensionActive[]; 919 extern const char kWatchdogExtensionActive[];
919 920
920 extern const char kProfilePreferenceHashes[]; 921 extern const char kProfilePreferenceHashes[];
921 922
922 extern const char kNetworkTimeMapping[]; 923 extern const char kNetworkTimeMapping[];
923 924
924 } // namespace prefs 925 } // namespace prefs
925 926
926 #endif // CHROME_COMMON_PREF_NAMES_H_ 927 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698