| Index: cloud_print/service/win/service_state.cc
|
| diff --git a/cloud_print/service/win/service_state.cc b/cloud_print/service/win/service_state.cc
|
| index 1478f2b7d23da02e10a0fc1e1be742ac578e3225..864100001e3b75670e8cdccabd5e902b925e9a1a 100644
|
| --- a/cloud_print/service/win/service_state.cc
|
| +++ b/cloud_print/service/win/service_state.cc
|
| @@ -164,12 +164,12 @@ std::string ServiceState::LoginToGoogle(const std::string& service,
|
| ServiceStateURLRequestDelegate fetcher_delegate;
|
| GURL url(kClientLoginUrl);
|
|
|
| - std::string post_body;
|
| - post_body += "accountType=GOOGLE";
|
| - post_body += "&Email=" + net::EscapeUrlEncodedData(email, true);
|
| - post_body += "&Passwd=" + net::EscapeUrlEncodedData(password, true);
|
| - post_body += "&source=" + net::EscapeUrlEncodedData("CP-Service", true);
|
| - post_body += "&service=" + net::EscapeUrlEncodedData(service, true);
|
| + std::string post_body;
|
| + post_body += "accountType=GOOGLE";
|
| + post_body += "&Email=" + net::EscapeUrlEncodedData(email, true);
|
| + post_body += "&Passwd=" + net::EscapeUrlEncodedData(password, true);
|
| + post_body += "&source=" + net::EscapeUrlEncodedData("CP-Service", true);
|
| + post_body += "&service=" + net::EscapeUrlEncodedData(service, true);
|
|
|
| net::URLRequest request(url, &fetcher_delegate);
|
|
|
|
|