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

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, 10 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..134a802c3aaac8920d3c07d06034f35cb9361774 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);
+ return (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