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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/BlobEvent.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/mediarecorder/BlobEvent.h
diff --git a/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h b/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
index a28fec4768cbc998183760117698fbddee44c230..a436fbfa9a025a696447a808ff8d5a8b29ea0e39 100644
--- a/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
+++ b/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
@@ -20,9 +20,9 @@ class MODULES_EXPORT BlobEvent final : public Event {
public:
~BlobEvent() override {}
- static PassRefPtrWillBeRawPtr<BlobEvent> create();
- static PassRefPtrWillBeRawPtr<BlobEvent> create(const AtomicString& type, const BlobEventInit& initializer);
- static PassRefPtrWillBeRawPtr<BlobEvent> create(const AtomicString& type, Blob*);
+ static RawPtr<BlobEvent> create();
+ static RawPtr<BlobEvent> create(const AtomicString& type, const BlobEventInit& initializer);
+ static RawPtr<BlobEvent> create(const AtomicString& type, Blob*);
Blob* data() const { return m_blob.get(); }
@@ -36,7 +36,7 @@ private:
BlobEvent(const AtomicString& type, const BlobEventInit& initializer);
BlobEvent(const AtomicString& type, Blob*);
- PersistentWillBeMember<Blob> m_blob;
+ Member<Blob> m_blob;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698