summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/tools
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-17 19:36:31 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-17 19:36:31 +0000
commiteeeb25e6a364cd50fe3298486a45cdce5db558c3 (patch)
tree2ad454e49affbbd8cc783ce0f865b0ba57c58239 /chrome/browser/sync/tools
parentb7ffc291223c4328b454bb934359336cda857a0e (diff)
downloadchromium_src-eeeb25e6a364cd50fe3298486a45cdce5db558c3.zip
chromium_src-eeeb25e6a364cd50fe3298486a45cdce5db558c3.tar.gz
chromium_src-eeeb25e6a364cd50fe3298486a45cdce5db558c3.tar.bz2
Revert 75262: "Use xmpp.google.com instead of talk.google.com"
75262 breaks sync for non-@gmail.com accounts. Will revert until that is sorted out. BUG=73067 TBR=hclam Review URL: http://codereview.chromium.org/6519058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75296 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/tools')
-rw-r--r--chrome/browser/sync/tools/sync_listen_notifications.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/tools/sync_listen_notifications.cc b/chrome/browser/sync/tools/sync_listen_notifications.cc
index 4a006fd..0eb9459 100644
--- a/chrome/browser/sync/tools/sync_listen_notifications.cc
+++ b/chrome/browser/sync/tools/sync_listen_notifications.cc
@@ -240,7 +240,7 @@ int main(int argc, char* argv[]) {
std::string email = command_line.GetSwitchValueASCII("email");
if (email.empty()) {
printf("Usage: %s --email=foo@bar.com [--password=mypassword] "
- "[--server=xmpp.google.com] [--port=5222] [--allow-plain] "
+ "[--server=talk.google.com] [--port=5222] [--allow-plain] "
"[--disable-tls] [--use-ssl-tcp] [--server-notifier-state] "
"[--use-legacy-notifier] "
"[--legacy-notifier-send-initial-update]\n",
@@ -250,7 +250,7 @@ int main(int argc, char* argv[]) {
std::string password = command_line.GetSwitchValueASCII("password");
std::string server = command_line.GetSwitchValueASCII("server");
if (server.empty()) {
- server = "xmpp.google.com";
+ server = "talk.google.com";
}
std::string port_str = command_line.GetSwitchValueASCII("port");
int port = 5222;