HomeSort by relevance Sort by last modified time
    Searched refs:httpBody (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditorDelegate.cpp 87 String httpBody;
89 if (FormData* formData = frameLoader.documentLoader()->originalRequest().httpBody())
90 httpBody = formData->flattenToString();
95 reportDetails->setString("request-body", httpBody);
XSSAuditor.cpp 359 FormData* httpBody = documentLoader->request().httpBody();
360 if (httpBody && !httpBody->isEmpty())
361 m_httpBodyAsString = httpBody->flattenToString();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RequestInit.cpp 53 RefPtr<FormData> httpBody = domFormData->createMultiPartFormData();
54 for (size_t i = 0; i < httpBody->elements().size(); ++i) {
55 const FormDataElement& element = httpBody->elements()[i];
75 blobData->setContentType(AtomicString("multipart/form-data; boundary=", AtomicString::ConstructFromLiteral) + httpBody->boundary().data());
FetchManager.cpp 280 RefPtr<FormData> httpBody(FormData::create());
281 httpBody->appendBlob(blobDataHandle->uuid(), blobDataHandle);
282 request.setHTTPBody(httpBody);
  /external/chromium_org/mojo/services/html_viewer/
blink_url_request_type_converters.cc 54 if (request.httpBody().isNull())
59 while (request.httpBody().elementAt(i++, element)) {
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.cpp 661 RefPtr<FormData> httpBody;
674 httpBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables));
676 httpBody->setAlwaysStream(true);
679 createRequest(httpBody.release(), exceptionState);
689 RefPtr<FormData> httpBody;
700 httpBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables));
702 httpBody->setAlwaysStream(true);
705 createRequest(httpBody.release(), exceptionState);
715 RefPtr<FormData> httpBody;
730 httpBody = FormData::create()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 192 WebHTTPBody WebHistoryItem::httpBody() const
197 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody)
199 m_private->setFormData(httpBody);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationAction.cpp 62 m_type = navigationType(frameLoadType, isFormSubmission || resourceRequest.httpBody(), event);
HistoryItem.cpp 188 m_formData = request.httpBody();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebURLRequest.cpp 195 WebHTTPBody WebURLRequest::httpBody() const
197 return WebHTTPBody(m_private->m_resourceRequest->httpBody());
200 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody)
202 m_private->m_resourceRequest->setHTTPBody(httpBody);
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceRequest.cpp 232 FormData* ResourceRequest::httpBody() const
237 void ResourceRequest::setHTTPBody(PassRefPtr<FormData> httpBody)
239 m_httpBody = httpBody;
308 FormData* formDataA = a.httpBody();
309 FormData* formDataB = b.httpBody();
ResourceRequestTest.cpp 51 EXPECT_STREQ("Test Body", original.httpBody()->flattenToString().utf8().data());
75 EXPECT_STREQ("Test Body", copy1->httpBody()->flattenToString().utf8().data());
ResourceRequest.h 137 FormData* httpBody() const;
138 void setHTTPBody(PassRefPtr<FormData> httpBody);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
RawResource.cpp 163 if (m_resourceRequest.httpBody() != newRequest.httpBody())
  /external/chromium_org/third_party/WebKit/public/web/
WebHistoryItem.h 113 BLINK_EXPORT WebHTTPBody httpBody() const;
  /external/chromium_org/content/renderer/fetchers/
resource_fetcher_impl.cc 89 if (!request_.httpBody().isNull())
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLRequest.h 166 BLINK_PLATFORM_EXPORT WebHTTPBody httpBody() const;
  /external/chromium_org/content/child/
web_url_loader_impl.cc 405 if (!request.httpBody().isNull()) {
408 const WebHTTPBody& httpBody = request.httpBody();
412 while (httpBody.elementAt(i++, element)) {
452 request_body->set_identifier(request.httpBody().identifier());
498 new_request.setHTTPBody(request_.httpBody());
    [all...]
  /external/chromium_org/content/renderer/
history_serialization.cc 103 const WebHTTPBody& http_body = item.httpBody();
render_frame_impl.cc 212 if (item.httpBody().isNull())
215 return item.httpBody().identifier();
    [all...]
render_view_browsertest.cc 397 blink::WebHTTPBody body = entry->root().httpBody();
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl_unittest.cc 30 const WebHTTPBody& body = request.httpBody();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorResourceAgent.cpp 231 if (request.httpBody() && !request.httpBody()->isEmpty()) {
233 request.httpBody()->flatten(bytes);
    [all...]

Completed in 458 milliseconds