Searched refs:post_content (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/ui/tab_contents/
H A Dcore_tab_helper.cc237 TemplateURLRef::PostContent post_content; local
239 search_args, template_url_service->search_terms_data(), &post_content));
246 const std::string& content_type = post_content.first;
247 std::string* post_data = &post_content.second;
/external/chromium_org/components/search_engines/
H A Dtemplate_url.h223 // If this TemplateURLRef uses POST, and |post_content| is not NULL, the
225 // and stored into |post_content|.
228 PostContent* post_content) const;
231 // not have |post_content| parameter once all reference callers pass
232 // |post_content| parameter.
394 // inside |post_content|. Returns false if errors are encountered during
397 PostContent* post_content) const;
414 PostContent* post_content) const;
H A Dtemplate_url.cc306 PostContent* post_content) const {
309 if (!post_content)
320 post_content->first = kUploadDataMIMEType;
321 post_content->first += boundary;
323 std::string* post_data = &post_content->second;
344 PostContent* post_content) const {
350 post_content));
809 PostContent* post_content) const {
812 EncodeFormData(post_params_, post_content);
1139 EncodeFormData(post_params_, post_content);
[all...]
H A Dtemplate_url_unittest.cc184 TemplateURLRef::PostContent post_content; local
186 search_args, search_terms_data, &post_content));
189 ASSERT_FALSE(post_content.first.empty());
190 ASSERT_FALSE(post_content.second.empty());

Completed in 592 milliseconds