| Index: jingle/notifier/listener/push_notifications_listen_task.h
|
| diff --git a/jingle/notifier/listener/push_notifications_listen_task.h b/jingle/notifier/listener/push_notifications_listen_task.h
|
| index fa6f3ae6065339d9a7c2dca03be64d037ed47fa0..2d2c7f3d6e07e08edf698b3738efbf1f0b28aa9d 100644
|
| --- a/jingle/notifier/listener/push_notifications_listen_task.h
|
| +++ b/jingle/notifier/listener/push_notifications_listen_task.h
|
| @@ -13,6 +13,7 @@
|
| #ifndef JINGLE_NOTIFIER_PUSH_NOTIFICATIONS_LISTENER_LISTEN_TASK_H_
|
| #define JINGLE_NOTIFIER_PUSH_NOTIFICATIONS_LISTENER_LISTEN_TASK_H_
|
|
|
| +#include "base/compiler_specific.h"
|
| #include "talk/xmpp/xmpptask.h"
|
|
|
| namespace buzz {
|
| @@ -37,9 +38,9 @@ class PushNotificationsListenTask : public buzz::XmppTask {
|
| virtual ~PushNotificationsListenTask();
|
|
|
| // Overriden from buzz::XmppTask.
|
| - virtual int ProcessStart();
|
| - virtual int ProcessResponse();
|
| - virtual bool HandleStanza(const buzz::XmlElement* stanza);
|
| + virtual int ProcessStart() OVERRIDE;
|
| + virtual int ProcessResponse() OVERRIDE;
|
| + virtual bool HandleStanza(const buzz::XmlElement* stanza) OVERRIDE;
|
|
|
| private:
|
| bool IsValidNotification(const buzz::XmlElement* stanza);
|
|
|