| Index: third_party/WebKit/Source/modules/fetch/FetchFormDataConsumerHandle.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/FetchFormDataConsumerHandle.cpp b/third_party/WebKit/Source/modules/fetch/FetchFormDataConsumerHandle.cpp
|
| index ca7f791d2909376e951a18e6e62d26e01a5299f9..4d237a3d688edd3e0a5f74e201d640980645d89c 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/FetchFormDataConsumerHandle.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/FetchFormDataConsumerHandle.cpp
|
| @@ -265,7 +265,7 @@ private:
|
| }
|
| // Here we handle body->boundary() as a C-style string. See
|
| // FormDataEncoder::generateUniqueBoundaryString.
|
| - blobData->setContentType(AtomicString("multipart/form-data; boundary=", AtomicString::ConstructFromLiteral) + body->boundary().data());
|
| + blobData->setContentType(AtomicString("multipart/form-data; boundary=") + body->boundary().data());
|
| auto size = blobData->length();
|
| if (factory) {
|
| // For testing
|
|
|