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

Unified Diff: webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h

Issue 2492693003: Propagate bitrate setting to RTCRtpSender. (Closed)
Patch Set: Address comments Created 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h
diff --git a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h
index 1541e2d63ac89e331a617d9cd10f04f4884bd40f..69e10e3bd560ea574277c94ac61fe624b313ecf1 100644
--- a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h
+++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h
@@ -22,13 +22,24 @@ NS_ASSUME_NONNULL_BEGIN
/**
* Returns current video resolution media constraint string stored in the store.
*/
-- (nullable NSString *)videoResolutionConstraintsSetting;
+- (nullable NSString *)videoResolutionConstraints;
/**
* Stores the provided value as video resolution media constraint.
* @param value the string to be stored
*/
-- (void)setVideoResolutionConstraintsSetting:(NSString *)value;
+- (void)setVideoResolutionConstraints:(NSString *)value;
+
+/**
+ * Returns current max bitrate number stored in the store.
+ */
+- (nullable NSNumber *)maxBitrate;
+
+/**
+ * Stores the provided value as maximum bitrate setting.
+ * @param value the number to be stored
+ */
+- (void)setMaxBitrate:(nullable NSNumber *)value;
@end
NS_ASSUME_NONNULL_END
« no previous file with comments | « webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsModel.m ('k') | webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.m » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698