Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(729)

Unified Diff: third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698