| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "content/browser/notifications/page_notification_delegate.h" | 5 #include "content/browser/notifications/page_notification_delegate.h" |
| 6 | 6 |
| 7 #include "content/browser/notifications/notification_message_filter.h" | 7 #include "content/browser/notifications/notification_message_filter.h" |
| 8 #include "content/browser/renderer_host/render_process_host_impl.h" | 8 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 9 #include "content/common/platform_notification_messages.h" | 9 #include "content/common/platform_notification_messages.h" |
| 10 #include "content/public/browser/render_process_host.h" | 10 #include "content/public/browser/render_process_host.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 PageNotificationDelegate::PageNotificationDelegate(int render_process_id, | 14 PageNotificationDelegate::PageNotificationDelegate(int render_process_id, |
| 15 int notification_id) | 15 int notification_id) |
| 16 : render_process_id_(render_process_id), | 16 : render_process_id_(render_process_id), |
| 17 notification_id_(notification_id) {} | 17 notification_id_(notification_id) {} |
| 18 | 18 |
| 19 PageNotificationDelegate::~PageNotificationDelegate() {} | 19 PageNotificationDelegate::~PageNotificationDelegate() {} |
| 20 | 20 |
| 21 void PageNotificationDelegate::NotificationDisplayed() { | 21 void PageNotificationDelegate::NotificationDisplayed() { |
| 22 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); | 22 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); |
| 23 if (!sender) | 23 if (!sender) |
| 24 return; | 24 return; |
| 25 | 25 |
| 26 sender->Send(new PlatformNotificationMsg_DidShow(notification_id_)); | 26 sender->Send(new PlatformNotificationMsg_DidShow(notification_id_)); |
| 27 } | 27 } |
| 28 | 28 |
| 29 void PageNotificationDelegate::NotificationError() { | |
| 30 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); | |
| 31 if (!sender) | |
| 32 return; | |
| 33 | |
| 34 sender->Send(new PlatformNotificationMsg_DidError(notification_id_)); | |
| 35 } | |
| 36 | |
| 37 // TODO(peter): Remove |by_user| since we're not using that anywhere. | 29 // TODO(peter): Remove |by_user| since we're not using that anywhere. |
| 38 void PageNotificationDelegate::NotificationClosed(bool by_user) { | 30 void PageNotificationDelegate::NotificationClosed(bool by_user) { |
| 39 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); | 31 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); |
| 40 if (!sender) | 32 if (!sender) |
| 41 return; | 33 return; |
| 42 | 34 |
| 43 sender->Send(new PlatformNotificationMsg_DidClose(notification_id_)); | 35 sender->Send(new PlatformNotificationMsg_DidClose(notification_id_)); |
| 44 static_cast<RenderProcessHostImpl*>(sender) | 36 static_cast<RenderProcessHostImpl*>(sender) |
| 45 ->notification_message_filter()->DidCloseNotification(notification_id_); | 37 ->notification_message_filter()->DidCloseNotification(notification_id_); |
| 46 } | 38 } |
| 47 | 39 |
| 48 void PageNotificationDelegate::NotificationClick() { | 40 void PageNotificationDelegate::NotificationClick() { |
| 49 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); | 41 RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_); |
| 50 if (!sender) | 42 if (!sender) |
| 51 return; | 43 return; |
| 52 | 44 |
| 53 sender->Send(new PlatformNotificationMsg_DidClick(notification_id_)); | 45 sender->Send(new PlatformNotificationMsg_DidClick(notification_id_)); |
| 54 } | 46 } |
| 55 | 47 |
| 56 } // namespace content | 48 } // namespace content |
| OLD | NEW |