| Index: third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
|
| diff --git a/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h b/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
|
| index c7a5db36dbc7e6d9d1b6877b08f4cdfb1e9fef2c..953aad1bcc5106da37f8a613d47a40de9badedba 100644
|
| --- a/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
|
| +++ b/third_party/WebKit/Source/modules/audio_output_devices/AudioOutputDeviceClient.h
|
| @@ -17,14 +17,14 @@ class LocalFrame;
|
| class WebString;
|
| class ScriptState;
|
|
|
| -class AudioOutputDeviceClient : public HeapSupplement<LocalFrame> {
|
| +class AudioOutputDeviceClient : public Supplement<LocalFrame> {
|
| public:
|
| virtual ~AudioOutputDeviceClient() {}
|
|
|
| // Checks that a given sink exists and has permissions to be used from the origin of the current frame.
|
| virtual void checkIfAudioSinkExistsAndIsAuthorized(ExecutionContext*, const WebString& sinkId, PassOwnPtr<WebSetSinkIdCallbacks>) = 0;
|
|
|
| - // HeapSupplement requirements.
|
| + // Supplement requirements.
|
| static AudioOutputDeviceClient* from(ExecutionContext*);
|
| static const char* supplementName();
|
| };
|
|
|