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