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

Unified Diff: content/renderer/media/video_capture_impl_manager.h

Issue 16320005: Define EncodedVideoSource and RtcCapturedEncodingVideoCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename encoded_video_source_messages to encoded_video_capture_messages. Add buffer_size in OnOpened… Created 7 years, 6 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: content/renderer/media/video_capture_impl_manager.h
diff --git a/content/renderer/media/video_capture_impl_manager.h b/content/renderer/media/video_capture_impl_manager.h
index e9422015b026bda6d3d41abc4398fed0aee1a34a..1d129a2cd2ffaeeaff51bcba814ed7f523494582 100644
--- a/content/renderer/media/video_capture_impl_manager.h
+++ b/content/renderer/media/video_capture_impl_manager.h
@@ -18,9 +18,11 @@
#include "base/synchronization/lock.h"
#include "content/common/content_export.h"
#include "media/video/capture/video_capture.h"
+#include "media/video/encoded_video_source.h"
namespace content {
+class RtcEncodingVideoCapturerFactory;
class VideoCaptureImpl;
class VideoCaptureMessageFilter;
@@ -50,6 +52,10 @@ class CONTENT_EXPORT VideoCaptureImplManager
return filter_.get();
}
+ RtcEncodingVideoCapturerFactory* encoding_capturer_factory() const {
+ return encoding_capturer_factory_;
+ }
+
protected:
virtual ~VideoCaptureImplManager();
@@ -74,6 +80,8 @@ class CONTENT_EXPORT VideoCaptureImplManager
base::Thread thread_;
scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
+ RtcEncodingVideoCapturerFactory* encoding_capturer_factory_;
+
DISALLOW_COPY_AND_ASSIGN(VideoCaptureImplManager);
};

Powered by Google App Engine
This is Rietveld 408576698