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

Unified Diff: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h

Issue 2137223002: Prefix bool variable with "should". (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h
diff --git a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h
index fcd2244cb1802cdf51332897f07849c9e5e37219..af23c395baf5e3de1da227c6f2b7f06187136702 100644
--- a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h
+++ b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h
@@ -93,13 +93,15 @@ RTC_EXPORT
/** ICE candidate pool size as defined in JSEP. Default is 0. */
@property(nonatomic, assign) int iceCandidatePoolSize;
-/** Prune turn ports on the same network to the same turn server. Default is false. */
-@property(nonatomic, assign) bool pruneTurnPorts;
+/** Prune turn ports on the same network to the same turn server.
+ * Default is NO.
+ */
+@property(nonatomic, assign) bool shouldPruneTurnPorts;
tkchin_webrtc 2016/07/11 19:52:21 BOOL
honghaiz3 2016/07/11 20:00:00 Done.
-/** If set to true, this means the ICE transport should presume TURN-to-TURN
+/** If set to YES, this means the ICE transport should presume TURN-to-TURN
* candidate pairs will succeed, even before a binding response is received.
*/
-@property(nonatomic, assign) bool presumeWritableWhenFullyRelayed;
+@property(nonatomic, assign) bool shouldPresumeWritableWhenFullyRelayed;
- (instancetype)init NS_DESIGNATED_INITIALIZER;

Powered by Google App Engine
This is Rietveld 408576698