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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/BlobEvent.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/mediarecorder/BlobEvent.cpp
diff --git a/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.cpp b/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.cpp
index 2b27e538ea36aadb3c35dbcacba9ed0e5e0775c4..fc8df4ee2f2ca52fb7483010d6e8ea90c224a69a 100644
--- a/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.cpp
+++ b/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.cpp
@@ -10,21 +10,21 @@
namespace blink {
// static
-PassRefPtrWillBeRawPtr<BlobEvent> BlobEvent::create()
+RawPtr<BlobEvent> BlobEvent::create()
{
return adoptRefWillBeNoop(new BlobEvent);
}
// static
-PassRefPtrWillBeRawPtr<BlobEvent> BlobEvent::create(const AtomicString& type, const BlobEventInit& initializer)
+RawPtr<BlobEvent> BlobEvent::create(const AtomicString& type, const BlobEventInit& initializer)
{
- return adoptRefWillBeNoop(new BlobEvent(type, initializer));
+ return new BlobEvent(type, initializer);
}
// static
-PassRefPtrWillBeRawPtr<BlobEvent> BlobEvent::create(const AtomicString& type, Blob* blob)
+RawPtr<BlobEvent> BlobEvent::create(const AtomicString& type, Blob* blob)
{
- return adoptRefWillBeNoop(new BlobEvent(type, blob));
+ return new BlobEvent(type, blob);
}
const AtomicString& BlobEvent::interfaceName() const

Powered by Google App Engine
This is Rietveld 408576698