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

Side by Side Diff: Source/core/loader/BeaconLoader.cpp

Issue 337873003: Qualify the generated includes in core (part 5) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline Created 6 years, 6 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 unified diff | Download patch
OLDNEW
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 "FetchInitiatorTypeNames.h" 8 #include "core/FetchInitiatorTypeNames.h"
9 #include "core/dom/Document.h" 9 #include "core/dom/Document.h"
10 #include "core/fetch/CrossOriginAccessControl.h" 10 #include "core/fetch/CrossOriginAccessControl.h"
11 #include "core/fetch/FetchContext.h" 11 #include "core/fetch/FetchContext.h"
12 #include "core/fileapi/File.h" 12 #include "core/fileapi/File.h"
13 #include "core/frame/LocalFrame.h" 13 #include "core/frame/LocalFrame.h"
14 #include "core/html/DOMFormData.h" 14 #include "core/html/DOMFormData.h"
15 #include "platform/network/FormData.h" 15 #include "platform/network/FormData.h"
16 #include "platform/network/ParsedContentType.h" 16 #include "platform/network/ParsedContentType.h"
17 #include "platform/network/ResourceRequest.h" 17 #include "platform/network/ResourceRequest.h"
18 #include "wtf/ArrayBufferView.h" 18 #include "wtf/ArrayBufferView.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 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();
121 request.setHTTPBody(entityBody.release()); 121 request.setHTTPBody(entityBody.release());
122 request.setHTTPContentType(contentType); 122 request.setHTTPContentType(contentType);
123 123
124 issueRequest(frame, request); 124 issueRequest(frame, request);
125 payloadLength = entitySize; 125 payloadLength = entitySize;
126 return true; 126 return true;
127 } 127 }
128 128
129 } // namespace WebCore 129 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/WorkerInspectorController.cpp ('k') | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698