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

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

Issue 1320533007: Componentize ssl_config_service_manager_pref.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added OWNERS and updated gypi type Created 5 years, 3 months 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 extern const char kCopresenceAnonymousDeviceId[]; 408 extern const char kCopresenceAnonymousDeviceId[];
409 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; 409 extern const char kToolbarIconSurfacingBubbleAcknowledged[];
410 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; 410 extern const char kToolbarIconSurfacingBubbleLastShowTime[];
411 #endif 411 #endif
412 412
413 #if defined(ENABLE_WEBRTC) 413 #if defined(ENABLE_WEBRTC)
414 extern const char kWebRTCMultipleRoutesEnabled[]; 414 extern const char kWebRTCMultipleRoutesEnabled[];
415 extern const char kWebRTCNonProxiedUdpEnabled[]; 415 extern const char kWebRTCNonProxiedUdpEnabled[];
416 #endif 416 #endif
417 417
418 // Local state prefs. Please add Profile prefs above instead.
419 extern const char kCertRevocationCheckingEnabled[];
420 extern const char kCertRevocationCheckingRequiredLocalAnchors[];
421 extern const char kSSLVersionMin[];
422 extern const char kSSLVersionMax[];
423 extern const char kSSLVersionFallbackMin[];
424 extern const char kCipherSuiteBlacklist[];
425 extern const char kDisableSSLRecordSplitting[];
426
427 extern const char kGLVendorString[]; 418 extern const char kGLVendorString[];
428 extern const char kGLRendererString[]; 419 extern const char kGLRendererString[];
429 extern const char kGLVersionString[]; 420 extern const char kGLVersionString[];
430 421
431 extern const char kMetricsReportingEnabled[]; 422 extern const char kMetricsReportingEnabled[];
432 423
433 // Android has it's own metric / crash reporting implemented in Android 424 // Android has it's own metric / crash reporting implemented in Android
434 // Java code so kMetricsReportingEnabled doesn't make sense. We use this 425 // Java code so kMetricsReportingEnabled doesn't make sense. We use this
435 // to inform crashes_ui that we have enabled crash reporting. 426 // to inform crashes_ui that we have enabled crash reporting.
436 #if defined(OS_ANDROID) 427 #if defined(OS_ANDROID)
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 800
810 #if defined(ENABLE_EXTENSIONS) 801 #if defined(ENABLE_EXTENSIONS)
811 extern const char kAnimationPolicy[]; 802 extern const char kAnimationPolicy[];
812 #endif 803 #endif
813 804
814 extern const char kBackgroundTracingLastUpload[]; 805 extern const char kBackgroundTracingLastUpload[];
815 806
816 } // namespace prefs 807 } // namespace prefs
817 808
818 #endif // CHROME_COMMON_PREF_NAMES_H_ 809 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698