Index: chrome/renderer/notification_provider.h |
=================================================================== |
--- chrome/renderer/notification_provider.h (revision 70108) |
+++ chrome/renderer/notification_provider.h (working copy) |
@@ -18,7 +18,8 @@ |
// NotificationProvider class is owned by the RenderView. Only |
// to be used on the UI thread. |
-class NotificationProvider : public WebKit::WebNotificationPresenter { |
+class NotificationProvider : public WebKit::WebNotificationPresenter, |
+ public IPC::Channel::Listener { |
public: |
explicit NotificationProvider(RenderView* view); |
virtual ~NotificationProvider(); |
@@ -32,7 +33,7 @@ |
virtual void requestPermission(const WebKit::WebSecurityOrigin& origin, |
WebKit::WebNotificationPermissionCallback* callback); |
- // IPC message handler called from RenderView. |
+ // IPC::Channel::Listener implementation. |
bool OnMessageReceived(const IPC::Message& message); |
// Called when the RenderView navigates. |