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

Unified Diff: webrtc/api/objc/RTCVideoRendererAdapter.h

Issue 1533323003: Update/move RTCVideoRendererAdapter to webrtc/api/objc. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@moveRenderers
Patch Set: Created 5 years 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/api/objc/RTCVideoRendererAdapter.h
diff --git a/webrtc/api/objc/RTCVideoRendererAdapter.h b/webrtc/api/objc/RTCVideoRendererAdapter.h
new file mode 100644
index 0000000000000000000000000000000000000000..efcd5d2da7c29ebbeeeb7f00f07207c2f3c6243e
--- /dev/null
+++ b/webrtc/api/objc/RTCVideoRendererAdapter.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2015 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#import "RTCVideoRenderer.h"
+
+#include "talk/app/webrtc/mediastreaminterface.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface RTCVideoRendererAdapter : NSObject
tkchin_webrtc 2016/01/05 21:59:02 Consider putting this in RTCVideoRenderer+Private.
tkchin_webrtc 2016/01/05 21:59:02 doco what this class is used for + update property
hjon 2016/01/08 01:00:52 Done.
+
+/** The Objective-C video renderer represented by this adapter. */
+@property(nonatomic, readonly) id<RTCVideoRenderer> videoRenderer;
+
+/** The native VideoRendererInterface representing this adapter. */
tkchin_webrtc 2016/01/05 21:59:02 doco: pointer is unsafe and owned by this class
hjon 2016/01/08 01:00:52 Done.
+@property(nonatomic, readonly)
+ webrtc::VideoRendererInterface *nativeVideoRenderer;
+
+- (instancetype)init NS_UNAVAILABLE;
+
+/** Initialize an RTCVideoRendererAdapter with an RTCVideoRenderer. */
+- (instancetype)initWithVideoRenderer:(id<RTCVideoRenderer>)videoRenderer
+ NS_DESIGNATED_INITIALIZER;
+
+@end
+
+NS_ASSUME_NONNULL_END

Powered by Google App Engine
This is Rietveld 408576698