| 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 ffe7e912d3a6aeb6985fd2bf7b44e0d090b95a79..5835825aaaabaf8c720e15860bf1ffbb7764114c 100644
|
| --- a/third_party/WebKit/public/platform/Platform.h
|
| +++ b/third_party/WebKit/public/platform/Platform.h
|
| @@ -72,6 +72,7 @@ namespace blink {
|
|
|
| class InterfaceProvider;
|
| class WebAudioBus;
|
| +class WebAudioLatencyHint;
|
| class WebBlobRegistry;
|
| class WebCanvasCaptureHandler;
|
| class WebClipboard;
|
| @@ -173,13 +174,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;
|
| }
|
|
|
|
|