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

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

Issue 2735303004: Add video codec setting to AppRTCMobile on iOS. (Closed)
Patch Set: Remove unneeded handlers. Created 3 years, 9 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/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 69e10e3bd560ea574277c94ac61fe624b313ecf1..0ecca2ab07c53b4691973710f6c070518ff67d51 100644
--- a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h
+++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h
@@ -31,6 +31,17 @@ NS_ASSUME_NONNULL_BEGIN
- (void)setVideoResolutionConstraints:(NSString *)value;
/**
+ * Returns current video codec stored in the store.
+ */
+- (nullable NSString *)videoCodec;
kthelgason 2017/03/09 13:39:43 not nullable?
sakal 2017/03/10 10:25:28 Actually I can make this property as well.
+
+/**
+ * Stores the provided value as maximum bitrate setting.
+ * @param value the number to be stored
+ */
+- (void)setVideoCodec:(nullable NSString *)value;
kthelgason 2017/03/09 13:39:43 ditto
sakal 2017/03/10 10:25:28 Done.
+
+/**
* Returns current max bitrate number stored in the store.
*/
- (nullable NSNumber *)maxBitrate;

Powered by Google App Engine
This is Rietveld 408576698