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

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: tommi@s comments 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
« no previous file with comments | « no previous file | content/renderer/media/media_recorder_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..453923b9638f67c860d1ec2c27617a226abe94dd 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& web_type,
+ const blink::WebString& web_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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698