Chromium Code Reviews| 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,7 +153,8 @@ |
| 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); |
|
akalin
2011/01/19 22:14:52
print payload here, too (do we know if it's a bina
Nicolas Zea
2011/01/19 22:54:56
Done. Raz only told me it's opaque, so I'll print
|
| // A real implementation would respond to the invalidation. |