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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
XSSAuditorDelegate.cpp 81 String httpBody;
83 if (FormData* formData = frameLoader.documentLoader()->originalRequest().httpBody())
84 httpBody = formData->flattenToString();
89 reportDetails->setString("request-body", httpBody);
XSSAuditor.cpp 354 FormData* httpBody = documentLoader->request().httpBody();
355 if (httpBody && !httpBody->isEmpty())
356 m_httpBodyAsString = httpBody->flattenToString();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.cpp 666 RefPtr<FormData> httpBody;
679 httpBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables));
681 httpBody->setAlwaysStream(true);
684 createRequest(httpBody.release(), exceptionState);
694 RefPtr<FormData> httpBody;
705 httpBody = FormData::create(UTF8Encoding().encode(body, WTF::EntitiesForUnencodables));
707 httpBody->setAlwaysStream(true);
710 createRequest(httpBody.release(), exceptionState);
720 RefPtr<FormData> httpBody;
735 httpBody = FormData::create()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 184 WebHTTPBody WebHistoryItem::httpBody() const
189 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody)
191 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 187 m_formData = request.httpBody();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebURLRequest.cpp 197 WebHTTPBody WebURLRequest::httpBody() const
199 return WebHTTPBody(m_private->m_resourceRequest->httpBody());
202 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody)
204 m_private->m_resourceRequest->setHTTPBody(httpBody);
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ResourceRequest.cpp 200 FormData* ResourceRequest::httpBody() const
205 void ResourceRequest::setHTTPBody(PassRefPtr<FormData> httpBody)
207 m_httpBody = httpBody;
276 FormData* formDataA = a.httpBody();
277 FormData* formDataB = b.httpBody();
ResourceRequest.h 157 FormData* httpBody() const;
158 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 110 BLINK_EXPORT WebHTTPBody httpBody() const;
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLRequest.h 144 BLINK_PLATFORM_EXPORT WebHTTPBody httpBody() const;
  /external/chromium_org/content/renderer/fetchers/
resource_fetcher_impl.cc 88 if (!request_.httpBody().isNull())
  /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());
503 new_request.setHTTPBody(request_.httpBody());
  /external/chromium_org/content/renderer/
history_serialization.cc 101 const WebHTTPBody& http_body = item.httpBody();
render_frame_impl.cc 197 if (item.httpBody().isNull())
200 return item.httpBody().identifier();
    [all...]
render_view_browsertest.cc 342 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 226 if (request.httpBody() && !request.httpBody()->isEmpty()) {
228 request.httpBody()->flatten(bytes);
    [all...]

Completed in 238 milliseconds