| Index: third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| diff --git a/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp b/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| index 1e8da581c1100c1333211a44d1437590b9cece74..f2381513b8eb26a7ba7e794d28c0a9c47b50f472 100644
|
| --- a/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| +++ b/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.cpp
|
| @@ -28,7 +28,7 @@ void HTMLMediaElementRemotePlayback::setBooleanAttribute(const QualifiedName& na
|
| // static
|
| HTMLMediaElementRemotePlayback& HTMLMediaElementRemotePlayback::from(HTMLMediaElement& element)
|
| {
|
| - HTMLMediaElementRemotePlayback* supplement = static_cast<HTMLMediaElementRemotePlayback*>(HeapSupplement<HTMLMediaElement>::from(element, supplementName()));
|
| + HTMLMediaElementRemotePlayback* supplement = static_cast<HTMLMediaElementRemotePlayback*>(Supplement<HTMLMediaElement>::from(element, supplementName()));
|
| if (!supplement) {
|
| supplement = new HTMLMediaElementRemotePlayback();
|
| provideTo(element, supplementName(), supplement);
|
| @@ -59,7 +59,7 @@ const char* HTMLMediaElementRemotePlayback::supplementName()
|
| DEFINE_TRACE(HTMLMediaElementRemotePlayback)
|
| {
|
| visitor->trace(m_remote);
|
| - HeapSupplement<HTMLMediaElement>::trace(visitor);
|
| + Supplement<HTMLMediaElement>::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|