summaryrefslogtreecommitdiffstats
path: root/content/browser/notifications/page_notification_delegate.cc
blob: fdf085d7c7ca6bc48b846ec9fb2b8427938d2417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/notifications/page_notification_delegate.h"

#include "content/browser/notifications/notification_message_filter.h"
#include "content/browser/renderer_host/render_process_host_impl.h"
#include "content/common/platform_notification_messages.h"
#include "content/public/browser/render_process_host.h"

namespace content {

PageNotificationDelegate::PageNotificationDelegate(int render_process_id,
                                                   int notification_id)
    : render_process_id_(render_process_id),
      notification_id_(notification_id) {}

PageNotificationDelegate::~PageNotificationDelegate() {}

void PageNotificationDelegate::NotificationDisplayed() {
  RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_);
  if (!sender)
    return;

  sender->Send(new PlatformNotificationMsg_DidShow(notification_id_));
}

void PageNotificationDelegate::NotificationClosed() {
  RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_);
  if (!sender)
    return;

  sender->Send(new PlatformNotificationMsg_DidClose(notification_id_));
  static_cast<RenderProcessHostImpl*>(sender)
      ->notification_message_filter()->DidCloseNotification(notification_id_);
}

void PageNotificationDelegate::NotificationClick() {
  RenderProcessHost* sender = RenderProcessHost::FromID(render_process_id_);
  if (!sender)
    return;

  sender->Send(new PlatformNotificationMsg_DidClick(notification_id_));
}

}  // namespace content