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

Unified Diff: third_party/WebKit/public/platform/WebMediaRecorderHandlerClient.h

Issue 2610163006: MediaRecorder: support |timecode| and remove |m_ignoreMutedMedia|. (Closed)
Patch Set: Rebase video_capture_device_client.cc Created 3 years, 11 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 | « third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebMediaRecorderHandlerClient.h
diff --git a/third_party/WebKit/public/platform/WebMediaRecorderHandlerClient.h b/third_party/WebKit/public/platform/WebMediaRecorderHandlerClient.h
index 679312f203f58f4003ac919ef2968006198434f1..029f24ef8a7d9a66caa26aff0c9b051a9e9c8df8 100644
--- a/third_party/WebKit/public/platform/WebMediaRecorderHandlerClient.h
+++ b/third_party/WebKit/public/platform/WebMediaRecorderHandlerClient.h
@@ -14,7 +14,10 @@ class WebString;
// Interface used by a MediaRecorder to get errors and recorded data delivered.
class WebMediaRecorderHandlerClient {
public:
- virtual void writeData(const char* data, size_t length, bool lastInslice) = 0;
+ virtual void writeData(const char* data,
+ size_t length,
+ bool lastInslice,
+ double timecode) = 0;
virtual void onError(const WebString& message) = 0;
};
« no previous file with comments | « third_party/WebKit/Source/modules/mediarecorder/MediaRecorder.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698