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 |