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

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

Issue 2501863003: Support for AudioContextOptions latencyHint. (Closed)
Patch Set: Add baseLatency and fix use of hardwareSampleRate. 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/Platform.h
diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
index e8e786ffcf145627955cdb4bc791ca4cebfaca5c..2afd1dc80cd9253cfe390575f4ba5c4bd089e32a 100644
--- a/third_party/WebKit/public/platform/Platform.h
+++ b/third_party/WebKit/public/platform/Platform.h
@@ -73,6 +73,7 @@ namespace blink {
class InterfaceProvider;
class WebAudioBus;
+class WebAudioLatencyHint;
class WebBlobRegistry;
class WebCanvasCaptureHandler;
class WebClipboard;
@@ -176,13 +177,13 @@ class BLINK_PLATFORM_EXPORT Platform {
// Creates a device for audio I/O.
// Pass in (numberOfInputChannels > 0) if live/local audio input is desired.
- virtual WebAudioDevice* createAudioDevice(size_t bufferSize,
- unsigned numberOfInputChannels,
- unsigned numberOfChannels,
- double sampleRate,
- WebAudioDevice::RenderCallback*,
- const WebString& deviceId,
- const WebSecurityOrigin&) {
+ virtual WebAudioDevice* createAudioDevice(
+ unsigned numberOfInputChannels,
+ unsigned numberOfChannels,
+ const WebAudioLatencyHint& latencyHint,
+ WebAudioDevice::RenderCallback*,
+ const WebString& deviceId,
+ const WebSecurityOrigin&) {
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698