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

Unified Diff: public/platform/Platform.h

Issue 1255873002: MediaRecorder Blink part (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: esprehn@ last comments Created 5 years, 3 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
« no previous file with comments | « Source/web/WebRuntimeFeatures.cpp ('k') | public/platform/WebMediaRecorderHandler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/Platform.h
diff --git a/public/platform/Platform.h b/public/platform/Platform.h
index 72ee4888c6b9ac8d58e5f7a057d1109912ecec44..7d6cb901398636564bbfc20e0ec56b37761aafc2 100644
--- a/public/platform/Platform.h
+++ b/public/platform/Platform.h
@@ -82,6 +82,7 @@ class WebGraphicsContext3DProvider;
class WebIDBFactory;
class WebMIDIAccessor;
class WebMIDIAccessorClient;
+class WebMediaRecorderHandler;
class WebMediaStreamCenter;
class WebMediaStreamCenterClient;
class WebMemoryDumpProvider;
@@ -627,10 +628,13 @@ public:
// May return null if WebRTC functionality is not avaliable or out of resources.
virtual WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(WebRTCPeerConnectionHandlerClient*) { return nullptr; }
+ // Creates an WebMediaRecorderHandler to record MediaStreams.
+ // May return null if the functionality is not available or out of resources.
+ virtual WebMediaRecorderHandler* createMediaRecorderHandler() { return nullptr; }
+
// May return null if WebRTC functionality is not avaliable or out of resources.
virtual WebMediaStreamCenter* createMediaStreamCenter(WebMediaStreamCenterClient*) { return nullptr; }
-
// WebWorker ----------------------------------------------------------
virtual void didStartWorkerRunLoop() { }
« no previous file with comments | « Source/web/WebRuntimeFeatures.cpp ('k') | public/platform/WebMediaRecorderHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698