| Index: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| index f1d324249f994885cd218484fa2e27b3a81e2ae5..2ead331582401a8f5c1a15b9c9c9b0ed5247984b 100644
|
| --- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp
|
| @@ -6,18 +6,20 @@
|
|
|
| #include "core/dom/Document.h"
|
| #include "core/dom/ExecutionContext.h"
|
| +#include "core/frame/LocalFrame.h"
|
| #include "public/web/WebFrameClient.h"
|
| #include "web/WebLocalFrameImpl.h"
|
| #include <memory>
|
|
|
| namespace blink {
|
|
|
| -AudioOutputDeviceClientImpl* AudioOutputDeviceClientImpl::create()
|
| +AudioOutputDeviceClientImpl* AudioOutputDeviceClientImpl::create(LocalFrame& frame)
|
| {
|
| - return new AudioOutputDeviceClientImpl();
|
| + return new AudioOutputDeviceClientImpl(frame);
|
| }
|
|
|
| -AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl()
|
| +AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl(LocalFrame& frame)
|
| + : AudioOutputDeviceClient(frame)
|
| {
|
| }
|
|
|
|
|