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

Unified Diff: Source/core/streams/ReadableStreamImpl.h

Issue 1107793002: Oilpan: have DOMException be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/core/streams/ReadableStream.cpp ('k') | Source/core/streams/ReadableStreamReader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ReadableStreamImpl.h
diff --git a/Source/core/streams/ReadableStreamImpl.h b/Source/core/streams/ReadableStreamImpl.h
index 54d0a4601cd55722a91885567b9baad690071348..719fe8e040a940fe2c8cb9456434f1bfc9b3cee0 100644
--- a/Source/core/streams/ReadableStreamImpl.h
+++ b/Source/core/streams/ReadableStreamImpl.h
@@ -148,9 +148,8 @@ private:
m_pendingReads.clear();
}
- void rejectAllPendingReads(PassRefPtrWillBeRawPtr<DOMException> r) override
+ void rejectAllPendingReads(DOMException* reason) override
{
- RefPtrWillBeRawPtr<DOMException> reason = r;
for (auto& resolver : m_pendingReads)
resolver->reject(reason);
m_pendingReads.clear();
« no previous file with comments | « Source/core/streams/ReadableStream.cpp ('k') | Source/core/streams/ReadableStreamReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698