Searched refs:WebHTTPBody (Results 1 - 25 of 32) sorted by relevance

12

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebHTTPBody.h49 class WebHTTPBody { class in namespace:blink
62 ~WebHTTPBody() { reset(); }
64 WebHTTPBody() : m_private(0) { } function in class:blink::WebHTTPBody
65 WebHTTPBody(const WebHTTPBody& b) : m_private(0) { assign(b); } function in class:blink::WebHTTPBody
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
[all...]
H A DWebURLRequest.h35 #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/
H A DWebHTTPBody.cpp32 #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
169 WebHTTPBody::WebHTTPBody(const PassRefPtr<FormData>& data) function in class:blink::WebHTTPBody
[all...]
H A DWebURLRequest.cpp36 #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/
H A Dblink_url_request_type_converters.cc58 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/
H A Dhistory_serialization.cc11 #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
[all...]
H A Drender_view_browsertest.cc46 #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);
H A Drender_frame_impl.cc162 using blink::WebHTTPBody;
963 WebHTTPBody http_body;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebHistoryItem.h41 class WebHTTPBody;
113 BLINK_EXPORT WebHTTPBody httpBody() const;
114 BLINK_EXPORT void setHTTPBody(const WebHTTPBody&);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebHistoryItem.cpp39 #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/
H A Dresource_fetcher_impl.cc11 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
23 using blink::WebHTTPBody;
57 WebHTTPBody web_http_body;
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_impl_unittest.cc12 using blink::WebHTTPBody;
30 const WebHTTPBody& body = request.httpBody();
36 WebHTTPBody::Element element;
38 if (element.type == WebHTTPBody::Element::TypeData) {
H A Dwebplugin_impl.cc42 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
70 using blink::WebHTTPBody;
643 WebHTTPBody http_body;
/external/chromium_org/content/common/
H A Dpage_state_serialization.cc28 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
[all...]
H A Dpage_state_serialization_unittest.cc120 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);
H A Dpage_state_serialization.h12 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
21 blink::WebHTTPBody::Element::Type type;
/external/chromium_org/content/public/common/
H A Dpage_state.cc88 element.type = blink::WebHTTPBody::Element::TypeData;
94 element.type = blink::WebHTTPBody::Element::TypeFile;
/external/chromium_org/content/renderer/pepper/
H A Durl_request_info_util.cc25 #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/
H A Dweb_url_loader_impl.cc48 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:
/external/chromium_org/third_party/WebKit/Source/platform/
H A Dblink_platform.target.darwin-arm.mk171 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
H A Dblink_platform.target.darwin-arm64.mk170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
H A Dblink_platform.target.darwin-mips.mk170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
H A Dblink_platform.target.darwin-mips64.mk170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
H A Dblink_platform.target.darwin-x86.mk170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \
H A Dblink_platform.target.darwin-x86_64.mk170 third_party/WebKit/Source/platform/exported/WebHTTPBody.cpp \

Completed in 357 milliseconds

12