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

  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_view_host_observer.cc 232 TemplateURLRef::PostContent post_content; local
234 search_args, &post_content));
240 const std::string& content_type = post_content.first;
241 std::string* post_data = &post_content.second;
  /external/chromium_org/chrome/browser/search_engines/
template_url.h 143 // If this TemplateURLRef uses POST, and |post_content| is not NULL, the
145 // and stored into |post_content|.
148 PostContent* post_content) const;
150 // not have |post_content| parameter once all reference callers pass
151 // |post_content| parameter.
163 PostContent* post_content) const;
319 // inside |post_content|. Returns false if errors are encountered during
322 PostContent* post_content) const;
339 PostContent* post_content) const;
template_url.cc 267 PostContent* post_content) const {
270 if (!post_content)
281 post_content->first = kUploadDataMIMEType;
282 post_content->first += boundary;
284 std::string* post_data = &post_content->second;
309 PostContent* post_content) const {
312 post_content);
318 PostContent* post_content) const {
324 post_content));
756 PostContent* post_content) const
    [all...]
template_url_unittest.cc 211 TemplateURLRef::PostContent post_content; local
214 search_args, search_terms_data, &post_content));
217 ASSERT_FALSE(post_content.first.empty());
218 ASSERT_FALSE(post_content.second.empty());
    [all...]

Completed in 742 milliseconds