OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_NOTIFICATION_PROVIDER_H_ | 5 #ifndef CONTENT_RENDERER_NOTIFICATION_PROVIDER_H_ |
6 #define CONTENT_RENDERER_NOTIFICATION_PROVIDER_H_ | 6 #define CONTENT_RENDERER_NOTIFICATION_PROVIDER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "content/public/renderer/render_view_observer.h" | 9 #include "content/public/renderer/render_view_observer.h" |
10 #include "content/renderer/active_notification_tracker.h" | 10 #include "content/renderer/active_notification_tracker.h" |
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotification.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotification.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNotificationPresen
ter.h" |
13 | 13 |
| 14 class RenderViewImpl; |
| 15 |
14 namespace WebKit { | 16 namespace WebKit { |
15 class WebNotificationPermissionCallback; | 17 class WebNotificationPermissionCallback; |
16 } | 18 } |
17 | 19 |
18 // NotificationProvider class is owned by the RenderView. Only | 20 // NotificationProvider class is owned by the RenderView. Only |
19 // to be used on the main thread. | 21 // to be used on the main thread. |
20 class NotificationProvider : public content::RenderViewObserver, | 22 class NotificationProvider : public content::RenderViewObserver, |
21 public WebKit::WebNotificationPresenter { | 23 public WebKit::WebNotificationPresenter { |
22 public: | 24 public: |
23 explicit NotificationProvider(RenderView* render_view); | 25 explicit NotificationProvider(RenderViewImpl* render_view); |
24 virtual ~NotificationProvider(); | 26 virtual ~NotificationProvider(); |
25 | 27 |
26 private: | 28 private: |
27 // RenderView::Observer implementation. | 29 // RenderView::Observer implementation. |
28 virtual bool OnMessageReceived(const IPC::Message& message); | 30 virtual bool OnMessageReceived(const IPC::Message& message); |
29 | 31 |
30 // WebKit::WebNotificationPresenter interface. | 32 // WebKit::WebNotificationPresenter interface. |
31 virtual bool show(const WebKit::WebNotification& proxy); | 33 virtual bool show(const WebKit::WebNotification& proxy); |
32 virtual void cancel(const WebKit::WebNotification& proxy); | 34 virtual void cancel(const WebKit::WebNotification& proxy); |
33 virtual void objectDestroyed(const WebKit::WebNotification& proxy); | 35 virtual void objectDestroyed(const WebKit::WebNotification& proxy); |
(...skipping 15 matching lines...) Expand all Loading... |
49 void OnNavigate(); | 51 void OnNavigate(); |
50 | 52 |
51 // A tracker object which manages the active notifications and the IDs | 53 // A tracker object which manages the active notifications and the IDs |
52 // that are used to refer to them over IPC. | 54 // that are used to refer to them over IPC. |
53 ActiveNotificationTracker manager_; | 55 ActiveNotificationTracker manager_; |
54 | 56 |
55 DISALLOW_COPY_AND_ASSIGN(NotificationProvider); | 57 DISALLOW_COPY_AND_ASSIGN(NotificationProvider); |
56 }; | 58 }; |
57 | 59 |
58 #endif // CONTENT_RENDERER_NOTIFICATION_PROVIDER_H_ | 60 #endif // CONTENT_RENDERER_NOTIFICATION_PROVIDER_H_ |
OLD | NEW |