| Index: third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.cpp
|
| diff --git a/third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.cpp b/third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.cpp
|
| index 430c71bb40ce0a16295d72de26bb4801de29819f..d4f2da9420ad125c9d3d84ac4ad753829461417a 100644
|
| --- a/third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.cpp
|
| +++ b/third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.cpp
|
| @@ -117,7 +117,7 @@ const char* HTMLMediaElementAudioOutputDevice::supplementName()
|
|
|
| HTMLMediaElementAudioOutputDevice& HTMLMediaElementAudioOutputDevice::from(HTMLMediaElement& element)
|
| {
|
| - HTMLMediaElementAudioOutputDevice* supplement = static_cast<HTMLMediaElementAudioOutputDevice*>(HeapSupplement<HTMLMediaElement>::from(element, supplementName()));
|
| + HTMLMediaElementAudioOutputDevice* supplement = static_cast<HTMLMediaElementAudioOutputDevice*>(Supplement<HTMLMediaElement>::from(element, supplementName()));
|
| if (!supplement) {
|
| supplement = new HTMLMediaElementAudioOutputDevice();
|
| provideTo(element, supplementName(), supplement);
|
| @@ -127,7 +127,7 @@ HTMLMediaElementAudioOutputDevice& HTMLMediaElementAudioOutputDevice::from(HTMLM
|
|
|
| DEFINE_TRACE(HTMLMediaElementAudioOutputDevice)
|
| {
|
| - HeapSupplement<HTMLMediaElement>::trace(visitor);
|
| + Supplement<HTMLMediaElement>::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|