Index: chrome/browser/sync/tools/sync_listen_notifications.cc |
=================================================================== |
--- chrome/browser/sync/tools/sync_listen_notifications.cc (revision 71618) |
+++ chrome/browser/sync/tools/sync_listen_notifications.cc (working copy) |
@@ -153,9 +153,10 @@ |
public: |
ChromeInvalidationListener() {} |
- virtual void OnInvalidate(syncable::ModelType model_type) { |
+ virtual void OnInvalidate(syncable::ModelType model_type, |
+ const std::string& payload) { |
LOG(INFO) << "OnInvalidate: " |
- << syncable::ModelTypeToString(model_type); |
+ << syncable::ModelTypeToString(model_type) << " - " << payload; |
// A real implementation would respond to the invalidation. |
} |