HomeSort by relevance Sort by last modified time
    Searched defs:post_body (Results 1 - 11 of 11) sorted by null

  /external/chromium/chrome/common/net/gaia/
gaia_oauth_client.cc 56 void MakeGaiaRequest(std::string post_body,
78 std::string post_body = local
84 MakeGaiaRequest(post_body, max_retries, delegate);
92 std::string post_body = local
98 MakeGaiaRequest(post_body, max_retries, delegate);
102 std::string post_body,
110 request_->set_upload_data("application/x-www-form-urlencoded", post_body);
gaia_authenticator.cc 160 string post_body; local
161 post_body += "Email=" + EscapeUrlEncodedData(params.email);
162 post_body += "&Passwd=" + EscapeUrlEncodedData(params.password);
163 post_body += "&source=" + EscapeUrlEncodedData(user_agent_);
164 post_body += "&service=" + service_id_;
166 post_body += "&logintoken=" + EscapeUrlEncodedData(params.captcha_token);
167 post_body += "&logincaptcha=" + EscapeUrlEncodedData(params.captcha_value);
169 post_body += "&PersistentCookie=true";
172 post_body += "&accountType=GOOGLE";
176 if (!Post(gaia_auth_url, post_body, &server_response_code, &message_text))
216 string post_body; local
266 string post_body; local
    [all...]
  /external/chromium_org/remoting/host/setup/
service_client.cc 54 const std::string& post_body,
75 base::DictionaryValue post_body; local
76 post_body.SetString("data.hostId", host_id);
77 post_body.SetString("data.hostName", host_name);
78 post_body.SetString("data.publicKey", public_key);
80 base::JSONWriter::Write(&post_body, &post_body_str);
  /external/chromium_org/cloud_print/service/
service_state.cc 171 std::string post_body; local
172 post_body += "accountType=GOOGLE";
173 post_body += "&Email=" + net::EscapeUrlEncodedData(email, true);
174 post_body += "&Passwd=" + net::EscapeUrlEncodedData(password, true);
175 post_body += "&source=" + net::EscapeUrlEncodedData("CP-Service", true);
176 post_body += "&service=" + net::EscapeUrlEncodedData(service, true);
185 net::UploadOwnedBytesElementReader::CreateWithString(post_body));
  /external/chromium_org/remoting/host/
token_validator_factory_impl.cc 69 std::string post_body = variable
78 request_->SetUploadData("application/x-www-form-urlencoded", post_body);
  /external/chromium/chrome/browser/
bug_report_util.cc 87 PostCleanup(Profile* profile, std::string* post_body,
89 post_body_(post_body),
190 std::string* post_body,
192 DCHECK(post_body);
195 &BugReportUtil::SendFeedback, profile, post_body, delay), delay);
200 std::string* post_body,
202 DCHECK(post_body);
214 post_body,
218 fetcher->set_upload_data(std::string(kProtBufMimeType), *post_body); local
373 std::string* post_body = new std::string local
    [all...]
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.cc 200 string post_body = "command=get_time"; local
211 MakeSyncServerPath(kSyncServerGetTimePath, post_body);
  /external/chromium_org/content/public/browser/
download_url_parameters.h 79 void set_post_body(const std::string& post_body) {
80 post_body_ = post_body;
110 const std::string& post_body() const { return post_body_; } function in class:content::DownloadUrlParameters
  /external/chromium_org/google_apis/gaia/
gaia_oauth_client.cc 76 const std::string& post_body,
96 std::string post_body = local
106 post_body, max_retries, delegate);
117 std::string post_body = local
127 post_body += "&scope=" + net::EscapeUrlEncodedData(scopes_string, true);
131 post_body, max_retries, delegate);
162 std::string post_body = local
165 post_body,
172 const std::string& post_body,
181 request_->SetUploadData("application/x-www-form-urlencoded", post_body);
    [all...]
  /external/chromium_org/chrome/browser/feedback/
feedback_util.cc 99 std::string* post_body,
101 post_body_(post_body),
182 std::string* post_body,
184 DCHECK(post_body);
188 base::Bind(&FeedbackUtil::SendFeedback, profile, post_body, delay),
194 std::string* post_body,
196 DCHECK(post_body);
208 new FeedbackUtil::PostCleanup(profile, post_body, previous_delay));
218 fetcher->SetUploadData(std::string(kProtBufMimeType), *post_body); local
385 std::string* post_body = new std::string local
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_client.cc 345 std::string post_body = base::StringPrintf( local
351 post_body, local
401 std::string post_body = base::StringPrintf( local
407 MakeWalletRequest(GetGetFullWalletUrl(), post_body, kFormEncodedMimeType); local
484 std::string post_body; local
486 post_body = base::StringPrintf(
492 post_body = base::StringPrintf(
497 MakeWalletRequest(GetSaveToWalletUrl(), post_body, kFormEncodedMimeType); local
525 std::string post_body; local
526 base::JSONWriter::Write(&request_dict, &post_body);
528 MakeWalletRequest(GetGetWalletItemsUrl(), post_body, kJsonMimeType); local
571 std::string post_body; local
574 MakeWalletRequest(GetSendStatusUrl(), post_body, kJsonMimeType); local
618 std::string post_body; local
621 MakeWalletRequest(GetAcceptLegalDocumentsUrl(), post_body, kJsonMimeType); local
632 VLOG(1) << "Making request to " << url << " with post_body=" << post_body; local
    [all...]

Completed in 408 milliseconds