summaryrefslogtreecommitdiffstats
path: root/cloud_print
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
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')
-rw-r--r--cloud_print/OWNERS12
-rw-r--r--cloud_print/service/win/service_state.cc12
2 files changed, 12 insertions, 12 deletions
diff --git a/cloud_print/OWNERS b/cloud_print/OWNERS
index 5f81751..ce80e6e 100644
--- a/cloud_print/OWNERS
+++ b/cloud_print/OWNERS
@@ -1,6 +1,6 @@
-set noparent
-abodenha@chromium.org
-scottbyer@chromium.org
-gene@chromium.org
-vitalybuka@chromium.org
-
+set noparent
+abodenha@chromium.org
+scottbyer@chromium.org
+gene@chromium.org
+vitalybuka@chromium.org
+
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);