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

Unified Diff: Source/modules/mediarecorder/MediaRecorder.h

Issue 1354863002: MediaRecorder: Adding BlobEvent and connecting it in MediaRecorderHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: MediaRecorder: BlobEvent 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
Index: Source/modules/mediarecorder/MediaRecorder.h
diff --git a/Source/modules/mediarecorder/MediaRecorder.h b/Source/modules/mediarecorder/MediaRecorder.h
index 028515bd0ba5fbd17dedb9f543012bd98d94d632..e6cf051aaf8717d52d5117264788efecc686bd25 100644
--- a/Source/modules/mediarecorder/MediaRecorder.h
+++ b/Source/modules/mediarecorder/MediaRecorder.h
@@ -16,7 +16,6 @@
namespace blink {
-class BlobData;
class ExceptionState;
class MODULES_EXPORT MediaRecorder final
@@ -81,7 +80,7 @@ public:
private:
MediaRecorder(ExecutionContext*, MediaStream*, const String& mimeType, ExceptionState&);
- void createBlobEvent(PassOwnPtr<BlobData> blobData);
+ void createBlobEvent(const char* data, size_t length);
void stopRecording();
void scheduleDispatchEvent(PassRefPtrWillBeRawPtr<Event>);

Powered by Google App Engine
This is Rietveld 408576698