diff options
author | zea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 20:19:20 +0000 |
---|---|---|
committer | zea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 20:19:20 +0000 |
commit | 6a21105b197bb0e3e23ce76fc23e067f25c60923 (patch) | |
tree | 25f7a06d626f63a422f9ec17bb783272d1c7a99a /chrome/browser/sync | |
parent | de0bfc41fde5e7387154820e3fdfe58ffd734831 (diff) | |
download | chromium_src-6a21105b197bb0e3e23ce76fc23e067f25c60923.zip chromium_src-6a21105b197bb0e3e23ce76fc23e067f25c60923.tar.gz chromium_src-6a21105b197bb0e3e23ce76fc23e067f25c60923.tar.bz2 |
[SYNC] Fix server notifier's InvalidateAll().
BUG=71204
TEST=Sync signin
Review URL: http://codereview.chromium.org/6343012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73010 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r-- | chrome/browser/sync/notifier/server_notifier_thread.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/sync/notifier/server_notifier_thread.cc b/chrome/browser/sync/notifier/server_notifier_thread.cc index 1c45beb..e8ca751 100644 --- a/chrome/browser/sync/notifier/server_notifier_thread.cc +++ b/chrome/browser/sync/notifier/server_notifier_thread.cc @@ -89,7 +89,8 @@ void ServerNotifierThread::OnInvalidateAll() { syncable::ModelTypeBitSet model_types; model_types.set(); // InvalidateAll, so set all datatypes to true. IncomingNotificationData notification_data; - notification_data.service_specific_data = model_types.to_string(); + notification_data.service_url = model_types.to_string(); + notification_data.service_specific_data = std::string(); // No payload. observers_->Notify(&Observer::OnIncomingNotification, notification_data); } |