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

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

Issue 2127653002: Add policy to control valid UDP port range in WebRTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 extern const char kCopresenceAnonymousDeviceId[]; 430 extern const char kCopresenceAnonymousDeviceId[];
431 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; 431 extern const char kToolbarIconSurfacingBubbleAcknowledged[];
432 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; 432 extern const char kToolbarIconSurfacingBubbleLastShowTime[];
433 extern const char kToolbarMigratedComponentActionStatus[]; 433 extern const char kToolbarMigratedComponentActionStatus[];
434 #endif 434 #endif
435 435
436 #if defined(ENABLE_WEBRTC) 436 #if defined(ENABLE_WEBRTC)
437 extern const char kWebRTCMultipleRoutesEnabled[]; 437 extern const char kWebRTCMultipleRoutesEnabled[];
438 extern const char kWebRTCNonProxiedUdpEnabled[]; 438 extern const char kWebRTCNonProxiedUdpEnabled[];
439 extern const char kWebRTCIPHandlingPolicy[]; 439 extern const char kWebRTCIPHandlingPolicy[];
440 extern const char kWebRTCUDPPortRange[];
440 #endif 441 #endif
441 442
442 extern const char kGLVendorString[]; 443 extern const char kGLVendorString[];
443 extern const char kGLRendererString[]; 444 extern const char kGLRendererString[];
444 extern const char kGLVersionString[]; 445 extern const char kGLVersionString[];
445 446
446 // Android has it's own metric / crash reporting implemented in Android 447 // Android has it's own metric / crash reporting implemented in Android
447 // Java code so kMetricsReportingEnabled doesn't make sense. We use this 448 // Java code so kMetricsReportingEnabled doesn't make sense. We use this
448 // to inform crashes_ui that we have enabled crash reporting. 449 // to inform crashes_ui that we have enabled crash reporting.
449 #if BUILDFLAG(ANDROID_JAVA_UI) 450 #if BUILDFLAG(ANDROID_JAVA_UI)
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 #endif // defined(GOOGLE_CHROME_BUILD) 819 #endif // defined(GOOGLE_CHROME_BUILD)
819 extern const char kMediaRouterFirstRunFlowAcknowledged[]; 820 extern const char kMediaRouterFirstRunFlowAcknowledged[];
820 #endif 821 #endif
821 822
822 extern const char kOriginTrialPublicKey[]; 823 extern const char kOriginTrialPublicKey[];
823 extern const char kOriginTrialDisabledFeatures[]; 824 extern const char kOriginTrialDisabledFeatures[];
824 825
825 } // namespace prefs 826 } // namespace prefs
826 827
827 #endif // CHROME_COMMON_PREF_NAMES_H_ 828 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698