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

  /external/chromium_org/content/renderer/
history_serialization.cc 59 WebHTTPBody* http_body) {
62 http_body->appendData(element.data);
65 http_body->appendFileRange(
72 http_body->appendFileSystemURLRange(
79 http_body->appendBlob(WebString::fromUTF8(element.blob_uuid));
100 state->http_body.http_content_type = item.httpContentType();
101 const WebHTTPBody& http_body = item.httpBody(); local
102 if (!(state->http_body.is_null = http_body.isNull())) {
103 state->http_body.identifier = http_body.identifier()
150 WebHTTPBody http_body; local
    [all...]
render_frame_impl.cc 879 WebHTTPBody http_body; local
    [all...]
  /external/chromium_org/content/renderer/pepper/
url_request_info_util.cc 53 WebHTTPBody* http_body) {
85 http_body->appendFileRange(platform_path.AsUTF16Unsafe(),
138 WebHTTPBody http_body; local
139 http_body.initialize();
149 &http_body))
154 http_body.appendData(WebData(item.data));
157 dest->setHTTPBody(http_body);
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 80 ExpectEquality(a.http_body, b.http_body);
111 void PopulateHttpBody(ExplodedHttpBody* http_body,
113 http_body->is_null = false;
114 http_body->identifier = 12345;
115 http_body->contains_passwords = false;
116 http_body->http_content_type = NS16("text/foo");
121 http_body->elements.push_back(e1);
129 http_body->elements.push_back(e2);
159 frame_state->http_body.http_content_type = NS16("foo/bar")
    [all...]
page_state_serialization.cc 25 void AppendDataToHttpBody(ExplodedHttpBody* http_body, const char* data,
30 http_body->elements.push_back(element);
33 void AppendFileRangeToHttpBody(ExplodedHttpBody* http_body,
44 http_body->elements.push_back(element);
47 void AppendURLRangeToHttpBody(ExplodedHttpBody* http_body,
58 http_body->elements.push_back(element);
61 void AppendBlobToHttpBody(ExplodedHttpBody* http_body,
66 http_body->elements.push_back(element);
140 if (!frame_state.http_body.is_null) {
141 AppendReferencedFilesFromHttpBody(frame_state.http_body.elements
    [all...]
page_state_serialization.h 57 ExplodedHttpBody http_body; member in struct:content::ExplodedFrameState
  /external/chromium_org/content/public/common/
page_state.cc 39 if (state->http_body.contains_passwords)
40 state->http_body = ExplodedHttpBody();
85 state.top.http_body.is_null = false;
90 state.top.http_body.elements.push_back(element);
97 state.top.http_body.elements.push_back(element);
100 state.top.http_body.contains_passwords =
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.cc 644 WebHTTPBody http_body; local
646 http_body.initialize();
647 http_body.appendData(WebData(&body[0], body.size()));
649 request->setHTTPBody(http_body);
    [all...]

Completed in 717 milliseconds