Index: webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_objc.mm |
diff --git a/webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_objc.mm b/webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_objc.mm |
index 8a6d448a9335ee3ebe8fd2966df13b862fedb03f..54a2a8c60f8aa41c3841d02d6f3d7d1ae479175a 100644 |
--- a/webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_objc.mm |
+++ b/webrtc/modules/video_capture/mac/qtkit/video_capture_qtkit_objc.mm |
@@ -24,6 +24,9 @@ using namespace videocapturemodule; |
@implementation VideoCaptureMacQTKitObjC |
+// TODO(5478): Update deprecated APIs. |
+#pragma clang diagnostic push |
+#pragma clang diagnostic ignored "-Wdeprecated" |
-(id)init { |
self = [super init]; |
if (self) { |
@@ -256,5 +259,6 @@ using namespace videocapturemodule; |
_framesDelivered++; |
_framesRendered++; |
} |
+#pragma clang diagnostic pop |
@end |