| Index: third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.h
|
| diff --git a/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.h b/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.h
|
| index 9c657a3affbdebb4abee2d495822c32303470e4f..65cf1f8e328606c68ddb48a18e62ed2c04d2244b 100644
|
| --- a/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.h
|
| +++ b/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.h
|
| @@ -17,9 +17,8 @@ class RemotePlayback;
|
|
|
| // Class used to implement the Remote Playback API. It is a supplement to
|
| // HTMLMediaElement.
|
| -class HTMLMediaElementRemotePlayback final : public NoBaseWillBeGarbageCollected<HTMLMediaElementRemotePlayback>, public WillBeHeapSupplement<HTMLMediaElement> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLMediaElementRemotePlayback);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(HTMLMediaElementRemotePlayback);
|
| +class HTMLMediaElementRemotePlayback final : public GarbageCollected<HTMLMediaElementRemotePlayback>, public HeapSupplement<HTMLMediaElement> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(HTMLMediaElementRemotePlayback);
|
| public:
|
| static bool fastHasAttribute(const QualifiedName&, const HTMLMediaElement&);
|
| static void setBooleanAttribute(const QualifiedName&, HTMLMediaElement&, bool);
|
| @@ -32,7 +31,7 @@ public:
|
| private:
|
| static const char* supplementName();
|
|
|
| - PersistentWillBeMember<RemotePlayback> m_remote;
|
| + Member<RemotePlayback> m_remote;
|
| };
|
|
|
| } // namespace blink
|
|
|