summaryrefslogtreecommitdiffstats
path: root/cloud_print/service
diff options
context:
space:
mode:
authorjoaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-31 08:41:17 +0000
committerjoaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-31 08:41:17 +0000
commitaf1430a0e006d20858b2f00859b186ab36f94128 (patch)
treeaf9cabd0e74ae632595a10c67ef76bf38d3c4b52 /cloud_print/service
parentacf4e1e9b4f29dfec60d813f53b468650d59b6ea (diff)
downloadchromium_src-af1430a0e006d20858b2f00859b186ab36f94128.zip
chromium_src-af1430a0e006d20858b2f00859b186ab36f94128.tar.gz
chromium_src-af1430a0e006d20858b2f00859b186ab36f94128.tar.bz2
Remove carriage returns from some files.
This caused the CQ to fail to land some patches (e.g. https://chromiumcodereview.appspot.com/9703053/) TBR=abodenha@chromium.org BUG=None TEST=Nothing breaks Review URL: https://chromiumcodereview.appspot.com/10442109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139756 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cloud_print/service')
-rw-r--r--cloud_print/service/win/service_state.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/cloud_print/service/win/service_state.cc b/cloud_print/service/win/service_state.cc
index 1478f2b..8641000 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);