| 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" | |
| 6 #include "core/loader/BeaconLoader.h" | 5 #include "core/loader/BeaconLoader.h" |
| 7 | 6 |
| 8 #include "core/dom/DOMArrayBufferView.h" | 7 #include "core/dom/DOMArrayBufferView.h" |
| 9 #include "core/dom/Document.h" | 8 #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/fetch/FetchInitiatorTypeNames.h" | 11 #include "core/fetch/FetchInitiatorTypeNames.h" |
| 13 #include "core/fetch/ResourceFetcher.h" | 12 #include "core/fetch/ResourceFetcher.h" |
| 14 #include "core/fileapi/File.h" | 13 #include "core/fileapi/File.h" |
| 15 #include "core/frame/LocalFrame.h" | 14 #include "core/frame/LocalFrame.h" |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 request.setHTTPBody(entityBody.release()); | 233 request.setHTTPBody(entityBody.release()); |
| 235 request.setHTTPContentType(contentType); | 234 request.setHTTPContentType(contentType); |
| 236 | 235 |
| 237 payloadLength = entitySize; | 236 payloadLength = entitySize; |
| 238 return true; | 237 return true; |
| 239 } | 238 } |
| 240 | 239 |
| 241 } // namespace | 240 } // namespace |
| 242 | 241 |
| 243 } // namespace blink | 242 } // namespace blink |
| OLD | NEW |