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

  /external/chromium/chrome/browser/extensions/
extension_messages_browsertest.cc 72 ExtensionHostMsg_PostMessage::Param post_params; local
73 ExtensionHostMsg_PostMessage::Read(post_msg, &post_params);
74 EXPECT_EQ("{\"message\":\"content ready\"}", post_params.b);
123 ExtensionHostMsg_PostMessage::Param post_params; local
124 ExtensionHostMsg_PostMessage::Read(post_msg, &post_params);
127 EXPECT_EQ(expected_msg, post_params.b);
  /external/chromium_org/chrome/browser/search_engines/
template_url.cc 266 bool TemplateURLRef::EncodeFormData(const PostParams& post_params,
268 if (post_params.empty())
286 for (PostParams::const_iterator param = post_params.begin();
287 param != post_params.end(); ++param) {
609 PostParams* post_params,
658 post_params->push_back(std::make_pair(parts[0], value));
665 r->index = post_params->size() - 1;
668 DCHECK(!post_params->empty());
    [all...]
template_url.h 297 // parsed into |post_params| which will be further replaced with real search
302 PostParams* post_params,
321 bool EncodeFormData(const PostParams& post_params,
412 // The following post_params are comma-separated lists used to specify the
template_url_unittest.cc 223 const TemplateURLRef::PostParams& post_params = local
225 EXPECT_EQ(6U, post_params.size());
226 for (TemplateURLRef::PostParams::const_iterator i = post_params.begin();
227 i != post_params.end(); ++i) {
231 static_cast<size_t>(i - post_params.begin())) {
    [all...]

Completed in 700 milliseconds