Searched refs:http_body (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/content/renderer/ |
D | history_serialization.cc | 59 WebHTTPBody* http_body) { in AppendHTTPBodyElement() argument 62 http_body->appendData(element.data); in AppendHTTPBodyElement() 65 http_body->appendFileRange( in AppendHTTPBodyElement() 72 http_body->appendFileSystemURLRange( in AppendHTTPBodyElement() 79 http_body->appendBlob(WebString::fromUTF8(element.blob_uuid)); in AppendHTTPBodyElement() 102 state->http_body.http_content_type = item.httpContentType(); in GenerateFrameStateFromItem() 103 const WebHTTPBody& http_body = item.httpBody(); in GenerateFrameStateFromItem() local 104 state->http_body.is_null = http_body.isNull(); in GenerateFrameStateFromItem() 105 if (!state->http_body.is_null) { in GenerateFrameStateFromItem() 106 state->http_body.identifier = http_body.identifier(); in GenerateFrameStateFromItem() [all …]
|
D | render_frame_impl.cc | 963 WebHTTPBody http_body; in OnNavigate() local 964 http_body.initialize(); in OnNavigate() 970 http_body.appendData( in OnNavigate() 972 request.setHTTPBody(http_body); in OnNavigate()
|
/external/chromium_org/content/common/ |
D | page_state_serialization.cc | 25 void AppendDataToHttpBody(ExplodedHttpBody* http_body, const char* data, in AppendDataToHttpBody() argument 30 http_body->elements.push_back(element); in AppendDataToHttpBody() 33 void AppendFileRangeToHttpBody(ExplodedHttpBody* http_body, in AppendFileRangeToHttpBody() argument 44 http_body->elements.push_back(element); in AppendFileRangeToHttpBody() 47 void AppendURLRangeToHttpBody(ExplodedHttpBody* http_body, in AppendURLRangeToHttpBody() argument 58 http_body->elements.push_back(element); in AppendURLRangeToHttpBody() 61 void AppendBlobToHttpBody(ExplodedHttpBody* http_body, in AppendBlobToHttpBody() argument 66 http_body->elements.push_back(element); in AppendBlobToHttpBody() 140 if (!frame_state.http_body.is_null) { in RecursivelyAppendReferencedFiles() 141 AppendReferencedFilesFromHttpBody(frame_state.http_body.elements, in RecursivelyAppendReferencedFiles() [all …]
|
D | page_state_serialization_unittest.cc | 80 ExpectEquality(a.http_body, b.http_body); in ExpectEquality() 112 void PopulateHttpBody(ExplodedHttpBody* http_body, in PopulateHttpBody() argument 114 http_body->is_null = false; in PopulateHttpBody() 115 http_body->identifier = 12345; in PopulateHttpBody() 116 http_body->contains_passwords = false; in PopulateHttpBody() 117 http_body->http_content_type = NS16("text/foo"); in PopulateHttpBody() 122 http_body->elements.push_back(e1); in PopulateHttpBody() 130 http_body->elements.push_back(e2); in PopulateHttpBody() 161 frame_state->http_body.http_content_type = NS16("foo/bar"); in PopulateFrameStateForBackwardsCompatTest() 162 frame_state->http_body.identifier = 789; in PopulateFrameStateForBackwardsCompatTest() [all …]
|
D | page_state_serialization.h | 58 ExplodedHttpBody http_body; member
|
/external/chromium_org/content/renderer/pepper/ |
D | url_request_info_util.cc | 54 WebHTTPBody* http_body) { in AppendFileRefToBody() argument 86 http_body->appendFileRange(platform_path.AsUTF16Unsafe(), in AppendFileRefToBody() 190 WebHTTPBody http_body; in CreateWebURLRequest() local 191 http_body.initialize(); in CreateWebURLRequest() 201 &http_body)) in CreateWebURLRequest() 206 http_body.appendData(WebData(item.data)); in CreateWebURLRequest() 209 dest->setHTTPBody(http_body); in CreateWebURLRequest()
|
/external/chromium_org/content/public/common/ |
D | page_state.cc | 39 if (state->http_body.contains_passwords) in RecursivelyRemovePasswordData() 40 state->http_body = ExplodedHttpBody(); in RecursivelyRemovePasswordData() 85 state.top.http_body.is_null = false; in CreateForTesting() 90 state.top.http_body.elements.push_back(element); in CreateForTesting() 97 state.top.http_body.elements.push_back(element); in CreateForTesting() 100 state.top.http_body.contains_passwords = in CreateForTesting()
|
/external/chromium_org/content/renderer/npapi/ |
D | webplugin_impl.cc | 643 WebHTTPBody http_body; in SetPostData() local 645 http_body.initialize(); in SetPostData() 646 http_body.appendData(WebData(&body[0], body.size())); in SetPostData() 648 request->setHTTPBody(http_body); in SetPostData()
|