| Index: chrome/browser/notifications/sync_notifier/chrome_notifier_service.h
|
| diff --git a/chrome/browser/notifications/sync_notifier/chrome_notifier_service.h b/chrome/browser/notifications/sync_notifier/chrome_notifier_service.h
|
| index 13a21f0ec7542502424054b5036143581faa8510..5fd885879e16a0a039e0992581c1931adfaae091 100644
|
| --- a/chrome/browser/notifications/sync_notifier/chrome_notifier_service.h
|
| +++ b/chrome/browser/notifications/sync_notifier/chrome_notifier_service.h
|
| @@ -91,9 +91,15 @@ class ChromeNotifierService : public syncer::SyncableService,
|
| // Add a notification to our list. This takes ownership of the pointer.
|
| void Add(scoped_ptr<notifier::SyncedNotification> notification);
|
|
|
| + // Display this notification in the notification center, or remove it.
|
| + void UpdateInMessageCenter(notifier::SyncedNotification* notification);
|
| +
|
| // Display a notification in the notification center (eventually).
|
| void Display(notifier::SyncedNotification* notification);
|
|
|
| + // Remove a notification from our store.
|
| + void FreeNotificationById(const std::string& notification_id);
|
| +
|
| // Back pointer to the owning profile.
|
| Profile* const profile_;
|
| NotificationUIManager* const notification_manager_;
|
|
|