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

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 + some fixes Created 4 years, 4 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 #if defined(ENABLE_EXTENSIONS) 422 #if defined(ENABLE_EXTENSIONS)
423 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; 423 extern const char kToolbarIconSurfacingBubbleAcknowledged[];
424 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; 424 extern const char kToolbarIconSurfacingBubbleLastShowTime[];
425 extern const char kToolbarMigratedComponentActionStatus[]; 425 extern const char kToolbarMigratedComponentActionStatus[];
426 #endif 426 #endif
427 427
428 #if defined(ENABLE_WEBRTC) 428 #if defined(ENABLE_WEBRTC)
429 extern const char kWebRTCMultipleRoutesEnabled[]; 429 extern const char kWebRTCMultipleRoutesEnabled[];
430 extern const char kWebRTCNonProxiedUdpEnabled[]; 430 extern const char kWebRTCNonProxiedUdpEnabled[];
431 extern const char kWebRTCIPHandlingPolicy[]; 431 extern const char kWebRTCIPHandlingPolicy[];
432 extern const char kWebRTCUDPPortRange[];
432 #endif 433 #endif
433 434
434 extern const char kGLVendorString[]; 435 extern const char kGLVendorString[];
435 extern const char kGLRendererString[]; 436 extern const char kGLRendererString[];
436 extern const char kGLVersionString[]; 437 extern const char kGLVersionString[];
437 438
438 // Android has it's own metric / crash reporting implemented in Android 439 // Android has it's own metric / crash reporting implemented in Android
439 // Java code so kMetricsReportingEnabled doesn't make sense. We use this 440 // Java code so kMetricsReportingEnabled doesn't make sense. We use this
440 // to inform crashes_ui that we have enabled crash reporting. 441 // to inform crashes_ui that we have enabled crash reporting.
441 #if BUILDFLAG(ANDROID_JAVA_UI) 442 #if BUILDFLAG(ANDROID_JAVA_UI)
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 #endif // defined(GOOGLE_CHROME_BUILD) 815 #endif // defined(GOOGLE_CHROME_BUILD)
815 extern const char kMediaRouterFirstRunFlowAcknowledged[]; 816 extern const char kMediaRouterFirstRunFlowAcknowledged[];
816 #endif 817 #endif
817 818
818 extern const char kOriginTrialPublicKey[]; 819 extern const char kOriginTrialPublicKey[];
819 extern const char kOriginTrialDisabledFeatures[]; 820 extern const char kOriginTrialDisabledFeatures[];
820 821
821 } // namespace prefs 822 } // namespace prefs
822 823
823 #endif // CHROME_COMMON_PREF_NAMES_H_ 824 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698