| 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 d181b9a7c6bbe412b01754a10c1126025b122cae..ffda2651899bbf6c2a82db30d7fabe968e20d553 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*>(WillBeHeapSupplement<HTMLMediaElement>::from(element, supplementName()));
|
| + HTMLMediaElementRemotePlayback* supplement = static_cast<HTMLMediaElementRemotePlayback*>(HeapSupplement<HTMLMediaElement>::from(element, supplementName()));
|
| if (!supplement) {
|
| supplement = new HTMLMediaElementRemotePlayback();
|
| provideTo(element, supplementName(), adoptPtrWillBeNoop(supplement));
|
| @@ -59,7 +59,7 @@ const char* HTMLMediaElementRemotePlayback::supplementName()
|
| DEFINE_TRACE(HTMLMediaElementRemotePlayback)
|
| {
|
| visitor->trace(m_remote);
|
| - WillBeHeapSupplement<HTMLMediaElement>::trace(visitor);
|
| + HeapSupplement<HTMLMediaElement>::trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|