diff options
Diffstat (limited to 'content/common/notification_observer.h')
-rw-r--r-- | content/common/notification_observer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/common/notification_observer.h b/content/common/notification_observer.h index ba32b1d..49f74de 100644 --- a/content/common/notification_observer.h +++ b/content/common/notification_observer.h @@ -8,7 +8,6 @@ class NotificationDetails; class NotificationSource; -class NotificationType; // This is the base class for notification observers. When a matching // notification is posted to the notification service, Observe is called. @@ -17,7 +16,7 @@ class NotificationObserver { NotificationObserver(); virtual ~NotificationObserver(); - virtual void Observe(NotificationType type, + virtual void Observe(int type, const NotificationSource& source, const NotificationDetails& details) = 0; }; |