diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-02 04:32:45 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-02 04:32:45 +0000 |
commit | 466d403b4b6cd99e2fe4b0b363456125adc4e555 (patch) | |
tree | 732d5a3aa368311a5eebb27476a024b089b7fce0 /chrome/browser/sync | |
parent | c4ee5ef3752ababceee70bc65edcfa08e8989870 (diff) | |
download | chromium_src-466d403b4b6cd99e2fe4b0b363456125adc4e555.zip chromium_src-466d403b4b6cd99e2fe4b0b363456125adc4e555.tar.gz chromium_src-466d403b4b6cd99e2fe4b0b363456125adc4e555.tar.bz2 |
Set default sync notification method to "server".
BUG=34647
TEST=manual
Review URL: http://codereview.chromium.org/2822044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51494 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r-- | chrome/browser/sync/notification_method.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/sync/notification_method.cc b/chrome/browser/sync/notification_method.cc index 9c00344..2c9896a 100644 --- a/chrome/browser/sync/notification_method.cc +++ b/chrome/browser/sync/notification_method.cc @@ -8,9 +8,8 @@ namespace browser_sync { -// TODO(akalin): Eventually change this to NOTIFICATION_NEW. const NotificationMethod kDefaultNotificationMethod = - NOTIFICATION_TRANSITIONAL; + NOTIFICATION_SERVER; std::string NotificationMethodToString( NotificationMethod notification_method) { |