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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.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/encryptedmedia/MediaEncryptedEvent.h
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h b/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
index 30bbb24ff4635bce9da33caa774715a31811a843..fa1557b695dbc8915d49ad7cd87710a5ad8aac3f 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
@@ -36,14 +36,14 @@ class MediaEncryptedEvent final : public Event {
public:
~MediaEncryptedEvent() override;
- static PassRefPtrWillBeRawPtr<MediaEncryptedEvent> create()
+ static RawPtr<MediaEncryptedEvent> create()
{
return adoptRefWillBeNoop(new MediaEncryptedEvent);
}
- static PassRefPtrWillBeRawPtr<MediaEncryptedEvent> create(const AtomicString& type, const MediaEncryptedEventInit& initializer)
+ static RawPtr<MediaEncryptedEvent> create(const AtomicString& type, const MediaEncryptedEventInit& initializer)
{
- return adoptRefWillBeNoop(new MediaEncryptedEvent(type, initializer));
+ return new MediaEncryptedEvent(type, initializer);
}
const AtomicString& interfaceName() const override;

Powered by Google App Engine
This is Rietveld 408576698