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

Unified Diff: Source/modules/fetch/ResponseTest.cpp

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/fetch/BodyStreamBufferTest.cpp ('k') | Source/modules/geofencing/GeofencingError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/ResponseTest.cpp
diff --git a/Source/modules/fetch/ResponseTest.cpp b/Source/modules/fetch/ResponseTest.cpp
index 1a7878244e47a309454be5adcbd7646b2be78604..fcaa58e1d2c1745681e91f57fe5f75e27837058f 100644
--- a/Source/modules/fetch/ResponseTest.cpp
+++ b/Source/modules/fetch/ResponseTest.cpp
@@ -66,7 +66,7 @@ public:
{
m_blobHandle = blobHandle;
}
- void didFail(PassRefPtrWillBeRawPtr<DOMException> exception) override
+ void didFail(DOMException* exception) override
{
m_exception = exception;
}
@@ -74,14 +74,14 @@ public:
{
return m_blobHandle;
}
- PassRefPtrWillBeRawPtr<DOMException> exception()
+ DOMException* exception()
{
return m_exception;
}
private:
RefPtr<BlobDataHandle> m_blobHandle;
- RefPtrWillBeMember<DOMException> m_exception;
+ Member<DOMException> m_exception;
};
« no previous file with comments | « Source/modules/fetch/BodyStreamBufferTest.cpp ('k') | Source/modules/geofencing/GeofencingError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698