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

Unified Diff: Source/modules/fetch/Body.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/modules/encryptedmedia/MediaKeySession.cpp ('k') | Source/modules/fetch/Body.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/Body.h
diff --git a/Source/modules/fetch/Body.h b/Source/modules/fetch/Body.h
index 67af33e0a244fffadfcba8290fc22447993b4a21..6a9435d7bf9c4ea313fb574ab3d1aac6590aa943 100644
--- a/Source/modules/fetch/Body.h
+++ b/Source/modules/fetch/Body.h
@@ -21,6 +21,7 @@ namespace blink {
class BodyStreamBuffer;
class BodyStreamSource;
+class DOMException;
class ReadableByteStream;
class ScriptState;
@@ -102,7 +103,7 @@ private:
virtual void didFinishLoading() override;
virtual void didFail(FileError::ErrorCode) override;
- void didBlobHandleReceiveError(PassRefPtrWillBeRawPtr<DOMException>);
+ void didBlobHandleReceiveError(DOMException*);
// We use BlobDataHandle or BodyStreamBuffer as data container of the Body.
// BodyStreamBuffer is used only when the Response object is created by
« no previous file with comments | « Source/modules/encryptedmedia/MediaKeySession.cpp ('k') | Source/modules/fetch/Body.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698