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

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

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.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

Powered by Google App Engine
This is Rietveld 408576698