diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-11 21:44:03 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-11 21:44:03 +0000 |
commit | 8c5795b4833e08beeaeae616ed4dd4509aa58b94 (patch) | |
tree | 1fd95a07a10fcaf445f9ec91e75ad8bc20c49875 /chrome/browser/sync | |
parent | 8771517219145a97d408708e1d5a0471ced38e1f (diff) | |
download | chromium_src-8c5795b4833e08beeaeae616ed4dd4509aa58b94.zip chromium_src-8c5795b4833e08beeaeae616ed4dd4509aa58b94.tar.gz chromium_src-8c5795b4833e08beeaeae616ed4dd4509aa58b94.tar.bz2 |
Changed default notification method to 'transitional'.
BUG=33261
TEST=manual
Review URL: http://codereview.chromium.org/597035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38820 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r-- | chrome/browser/sync/notification_method.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/sync/notification_method.cc b/chrome/browser/sync/notification_method.cc index 28f6c15..aec4a9c 100644 --- a/chrome/browser/sync/notification_method.cc +++ b/chrome/browser/sync/notification_method.cc @@ -8,9 +8,9 @@ namespace browser_sync { -// TODO(akalin): Eventually change this to NOTIFICATION_TRANSITIONAL, -// then NOTIFICATION_NEW. -const NotificationMethod kDefaultNotificationMethod = NOTIFICATION_LEGACY; +// TODO(akalin): Eventually change this to NOTIFICATION_NEW. +const NotificationMethod kDefaultNotificationMethod = + NOTIFICATION_TRANSITIONAL; std::string NotificationMethodToString( NotificationMethod notification_method) { |