HomeSort by relevance Sort by last modified time
    Searched refs:WebHTTPBody (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/public/platform/
WebHTTPBody.h 49 class WebHTTPBody {
62 ~WebHTTPBody() { reset(); }
64 WebHTTPBody() : m_private(0) { }
65 WebHTTPBody(const WebHTTPBody& b) : m_private(0) { assign(b); }
66 WebHTTPBody& operator=(const WebHTTPBody& b)
74 BLINK_PLATFORM_EXPORT void assign(const WebHTTPBody&);
104 BLINK_PLATFORM_EXPORT WebHTTPBody(const WTF::PassRefPtr<FormData>&);
105 BLINK_PLATFORM_EXPORT WebHTTPBody& operator=(const WTF::PassRefPtr<FormData>&)
    [all...]
WebURLRequest.h 35 #include "WebHTTPBody.h"
42 class WebHTTPBody;
166 BLINK_PLATFORM_EXPORT WebHTTPBody httpBody() const;
167 BLINK_PLATFORM_EXPORT void setHTTPBody(const WebHTTPBody&);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebHTTPBody.cpp 32 #include "public/platform/WebHTTPBody.h"
42 void WebHTTPBody::initialize()
47 void WebHTTPBody::reset()
52 void WebHTTPBody::assign(const WebHTTPBody& other)
60 size_t WebHTTPBody::elementCount() const
66 bool WebHTTPBody::elementAt(size_t index, Element& result) const
113 void WebHTTPBody::appendData(const WebData& data)
121 void WebHTTPBody::appendFile(const WebString& filePath)
127 void WebHTTPBody::appendFileRange(const WebString& filePath, long long fileStart, long long fileLength, double modi (…)
    [all...]
WebURLRequest.cpp 36 #include "public/platform/WebHTTPBody.h"
195 WebHTTPBody WebURLRequest::httpBody() const
197 return WebHTTPBody(m_private->m_resourceRequest->httpBody());
200 void WebURLRequest::setHTTPBody(const WebHTTPBody& httpBody)
  /external/chromium_org/mojo/services/html_viewer/
blink_url_request_type_converters.cc 58 blink::WebHTTPBody::Element element;
61 case blink::WebHTTPBody::Element::TypeData:
80 case blink::WebHTTPBody::Element::TypeFile:
81 case blink::WebHTTPBody::Element::TypeFileSystemURL:
82 case blink::WebHTTPBody::Element::TypeBlob:
  /external/chromium_org/content/renderer/
history_serialization.cc 11 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
18 using blink::WebHTTPBody;
34 void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input,
37 case WebHTTPBody::Element::TypeData:
40 case WebHTTPBody::Element::TypeFile:
46 case WebHTTPBody::Element::TypeFileSystemURL:
52 case WebHTTPBody::Element::TypeBlob:
59 WebHTTPBody* http_body) {
61 case WebHTTPBody::Element::TypeData:
64 case WebHTTPBody::Element::TypeFile
    [all...]
render_view_browsertest.cc 46 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
397 blink::WebHTTPBody body = entry->root().httpBody();
398 blink::WebHTTPBody::Element element;
401 EXPECT_EQ(blink::WebHTTPBody::Element::TypeData, element.type);
    [all...]
render_frame_impl.cc 162 using blink::WebHTTPBody;
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebHistoryItem.h 41 class WebHTTPBody;
113 BLINK_EXPORT WebHTTPBody httpBody() const;
114 BLINK_EXPORT void setHTTPBody(const WebHTTPBody&);
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 39 #include "public/platform/WebHTTPBody.h"
192 WebHTTPBody WebHistoryItem::httpBody() const
194 return WebHTTPBody(m_private->formData());
197 void WebHistoryItem::setHTTPBody(const WebHTTPBody& httpBody)
  /external/chromium_org/content/renderer/fetchers/
resource_fetcher_impl.cc 11 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
23 using blink::WebHTTPBody;
57 WebHTTPBody web_http_body;
  /external/chromium_org/content/renderer/npapi/
webplugin_impl_unittest.cc 12 using blink::WebHTTPBody;
30 const WebHTTPBody& body = request.httpBody();
36 WebHTTPBody::Element element;
38 if (element.type == WebHTTPBody::Element::TypeData) {
webplugin_impl.cc 42 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
70 using blink::WebHTTPBody;
643 WebHTTPBody http_body;
    [all...]
  /external/chromium_org/content/common/
page_state_serialization.cc 28 element.type = blink::WebHTTPBody::Element::TypeData;
39 element.type = blink::WebHTTPBody::Element::TypeFile;
53 element.type = blink::WebHTTPBody::Element::TypeFileSystemURL;
64 element.type = blink::WebHTTPBody::Element::TypeBlob;
75 if (elements[i].type == blink::WebHTTPBody::Element::TypeFile)
424 if (element.type == blink::WebHTTPBody::Element::TypeData) {
427 } else if (element.type == blink::WebHTTPBody::Element::TypeFile) {
433 blink::WebHTTPBody::Element::TypeFileSystemURL) {
439 DCHECK(element.type == blink::WebHTTPBody::Element::TypeBlob);
457 if (type == blink::WebHTTPBody::Element::TypeData)
    [all...]
page_state_serialization_unittest.cc 120 e1.type = blink::WebHTTPBody::Element::TypeData;
125 e2.type = blink::WebHTTPBody::Element::TypeFile;
166 e1.type = blink::WebHTTPBody::Element::TypeData;
171 e2.type = blink::WebHTTPBody::Element::TypeFile;
176 e3.type = blink::WebHTTPBody::Element::TypeData;
357 p.WriteInt(blink::WebHTTPBody::Element::TypeData);
page_state_serialization.h 12 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
21 blink::WebHTTPBody::Element::Type type;
  /external/chromium_org/content/public/common/
page_state.cc 88 element.type = blink::WebHTTPBody::Element::TypeData;
94 element.type = blink::WebHTTPBody::Element::TypeFile;
  /external/chromium_org/content/renderer/pepper/
url_request_info_util.cc 25 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
37 using blink::WebHTTPBody;
54 WebHTTPBody* http_body) {
190 WebHTTPBody http_body;
  /external/chromium_org/content/child/
web_url_loader_impl.cc 48 using blink::WebHTTPBody;
408 const WebHTTPBody& httpBody = request.httpBody();
410 WebHTTPBody::Element element;
414 case WebHTTPBody::Element::TypeData:
422 case WebHTTPBody::Element::TypeFile:
435 case WebHTTPBody::Element::TypeFileSystemURL: {
445 case WebHTTPBody::Element::TypeBlob:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 171 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
    [all...]
blink_platform.target.darwin-arm64.mk 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
    [all...]
blink_platform.target.darwin-mips64.mk 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
    [all...]
blink_platform.target.darwin-x86_64.mk 170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
    [all...]

Completed in 414 milliseconds

1 2