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

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

Issue 1534553003: MediaRecorder: correct MIME type parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated content_unittests, updated vp9 handling 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: content/renderer/media/media_recorder_handler.h
diff --git a/content/renderer/media/media_recorder_handler.h b/content/renderer/media/media_recorder_handler.h
index 05a215d8f5292f16cfcd1045b76cabf4528b3c6e..6b11185f5f3c689e572acd2797d0e3502f49105f 100644
--- a/content/renderer/media/media_recorder_handler.h
+++ b/content/renderer/media/media_recorder_handler.h
@@ -47,10 +47,12 @@ class CONTENT_EXPORT MediaRecorderHandler final
~MediaRecorderHandler() override;
// blink::WebMediaRecorderHandler.
- bool canSupportMimeType(const blink::WebString& mimeType) override;
+ bool canSupportMimeType(const blink::WebString& type,
+ const blink::WebString& codecs) override;
bool initialize(blink::WebMediaRecorderHandlerClient* client,
const blink::WebMediaStream& media_stream,
- const blink::WebString& mimeType) override;
+ const blink::WebString& type,
+ const blink::WebString& codecs) override;
bool start() override;
bool start(int timeslice) override;
void stop() override;
« no previous file with comments | « no previous file | content/renderer/media/media_recorder_handler.cc » ('j') | content/renderer/media/media_recorder_handler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698