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

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

Issue 2060833002: Implementation of 'AudioContext.getOutputTimestamp' method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from Raymond and miu@ Created 4 years, 1 month 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: third_party/WebKit/public/platform/WebAudioDevice.h
diff --git a/third_party/WebKit/public/platform/WebAudioDevice.h b/third_party/WebKit/public/platform/WebAudioDevice.h
index 6680cfb0d6eec2b0bb59a0039cce016eef957879..bf20bef47a0e795b3d1bdb01783ed79dcf92d061 100644
--- a/third_party/WebKit/public/platform/WebAudioDevice.h
+++ b/third_party/WebKit/public/platform/WebAudioDevice.h
@@ -42,7 +42,10 @@ class WebAudioDevice {
public:
virtual void render(const WebVector<float*>& sourceData,
const WebVector<float*>& destinationData,
- size_t numberOfFrames);
+ size_t numberOfFrames,
+ double delay,
+ double delayTimestamp,
sandersd (OOO until July 31) 2016/12/01 23:55:00 This is a rather strange way to represent timestam
Mikhail 2016/12/02 11:48:21 Yeah, time stamps in blink are usually represented
+ size_t priorFramesSkipped);
protected:
virtual ~RenderCallback();

Powered by Google App Engine
This is Rietveld 408576698