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

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

Issue 895163005: Oilpan: fix build after r189174 (61f2a59). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/fetch/Response.cpp
diff --git a/Source/modules/fetch/Response.cpp b/Source/modules/fetch/Response.cpp
index 39f49b44bfea3403325919bc9f7dba207fd8e67c..f5e267308a00c6e9ffbb417bea1d93ec802203e3 100644
--- a/Source/modules/fetch/Response.cpp
+++ b/Source/modules/fetch/Response.cpp
@@ -98,7 +98,7 @@ Response* Response::create(ExecutionContext* context, const BodyInit& body, cons
return create(context, blob, ResponseInit(responseInit, exceptionState), exceptionState);
}
if (body.isFormData()) {
- RefPtr<DOMFormData> domFormData = body.getAsFormData();
+ RefPtrWillBeRawPtr<DOMFormData> domFormData = body.getAsFormData();
OwnPtr<BlobData> blobData = BlobData::create();
// FIXME: the same code exist in RequestInit::RequestInit().
RefPtr<FormData> httpBody = domFormData->createMultiPartFormData();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698