Index: webrtc/api/objc/RTCStatsReport.h |
diff --git a/webrtc/api/objc/RTCStatsReport.h b/webrtc/api/objc/RTCStatsReport.h |
index fc66faf2cf7b9e22bdd6211e0f59dc40378603fb..9a120b90720ae23077d97c7fa2a5a3bf88c1621d 100644 |
--- a/webrtc/api/objc/RTCStatsReport.h |
+++ b/webrtc/api/objc/RTCStatsReport.h |
@@ -11,6 +11,7 @@ |
#import <Foundation/Foundation.h> |
NS_ASSUME_NONNULL_BEGIN |
+// TODO(hjon): Update nullability types. See http://crbug/webrtc/5592 |
/** This does not currently conform to the spec. */ |
@interface RTCStatsReport : NSObject |
@@ -25,7 +26,8 @@ NS_ASSUME_NONNULL_BEGIN |
@property(nonatomic, readonly) NSString *statsId; |
/** A dictionary holding the actual stats. */ |
-@property(nonatomic, readonly) NSDictionary<NSString *, NSString *> *values; |
+@property(nonatomic, readonly) NSDictionary *values; |
+// @property(nonatomic, readonly) NSDictionary<NSString *, NSString *> *values; |
- (instancetype)init NS_UNAVAILABLE; |