| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "core/loader/BeaconLoader.h" | 6 #include "core/loader/BeaconLoader.h" |
| 7 | 7 |
| 8 #include "core/FetchInitiatorTypeNames.h" | 8 #include "core/FetchInitiatorTypeNames.h" |
| 9 #include "core/dom/Document.h" | |
| 10 #include "core/fetch/CrossOriginAccessControl.h" | 9 #include "core/fetch/CrossOriginAccessControl.h" |
| 11 #include "core/fetch/FetchContext.h" | 10 #include "core/fetch/FetchContext.h" |
| 12 #include "core/fileapi/File.h" | 11 #include "core/fileapi/File.h" |
| 13 #include "core/frame/LocalFrame.h" | 12 #include "core/frame/LocalFrame.h" |
| 14 #include "core/html/DOMFormData.h" | 13 #include "core/html/DOMFormData.h" |
| 15 #include "platform/network/FormData.h" | 14 #include "platform/network/FormData.h" |
| 16 #include "platform/network/ParsedContentType.h" | 15 #include "platform/network/ParsedContentType.h" |
| 17 #include "platform/network/ResourceRequest.h" | 16 #include "platform/network/ResourceRequest.h" |
| 18 #include "wtf/ArrayBufferView.h" | 17 #include "wtf/ArrayBufferView.h" |
| 19 | 18 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 AtomicString contentType = AtomicString("multipart/form-data; boundary=", At
omicString::ConstructFromLiteral) + entityBody->boundary().data(); | 120 AtomicString contentType = AtomicString("multipart/form-data; boundary=", At
omicString::ConstructFromLiteral) + entityBody->boundary().data(); |
| 122 request.setHTTPBody(entityBody.release()); | 121 request.setHTTPBody(entityBody.release()); |
| 123 request.setHTTPContentType(contentType); | 122 request.setHTTPContentType(contentType); |
| 124 | 123 |
| 125 issueRequest(frame, request); | 124 issueRequest(frame, request); |
| 126 payloadLength = entitySize; | 125 payloadLength = entitySize; |
| 127 return true; | 126 return true; |
| 128 } | 127 } |
| 129 | 128 |
| 130 } // namespace WebCore | 129 } // namespace WebCore |
| OLD | NEW |