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/ui/tab_contents/
core_tab_helper.cc 237 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/chrome/browser/search_engines/
template_url.cc 299 PostContent* post_content) const {
302 if (!post_content)
313 post_content->first = kUploadDataMIMEType;
314 post_content->first += boundary;
316 std::string* post_data = &post_content->second;
337 PostContent* post_content) const {
343 post_content));
801 PostContent* post_content) const {
804 EncodeFormData(post_params_, post_content);
    [all...]
template_url.h 204 // If this TemplateURLRef uses POST, and |post_content| is not NULL, the
206 // and stored into |post_content|.
209 PostContent* post_content) const;
212 // not have |post_content| parameter once all reference callers pass
213 // |post_content| parameter.
373 // inside |post_content|. Returns false if errors are encountered during
376 PostContent* post_content) const;
393 PostContent* post_content) const;
template_url_unittest.cc 237 TemplateURLRef::PostContent post_content; local
239 search_args, search_terms_data, &post_content));
242 ASSERT_FALSE(post_content.first.empty());
243 ASSERT_FALSE(post_content.second.empty());
    [all...]

Completed in 1163 milliseconds