Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / chrome / browser / notifications / persistent_notification_delegate.h
blob003d46be9d58a7f36b067608b83cce3f2927cd82
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_NOTIFICATIONS_PERSISTENT_NOTIFICATION_DELEGATE_H_
6 #define CHROME_BROWSER_NOTIFICATIONS_PERSISTENT_NOTIFICATION_DELEGATE_H_
8 #include <stdint.h>
9 #include <string>
11 #include "chrome/browser/notifications/notification_delegate.h"
12 #include "url/gurl.h"
14 namespace content {
15 class BrowserContext;
18 // Delegate responsible for listening to the click event on persistent
19 // notifications, to forward them to the PlatformNotificationService so that
20 // JavaScript events can be fired on the associated Service Worker.
21 class PersistentNotificationDelegate : public NotificationDelegate {
22 public:
23 PersistentNotificationDelegate(
24 content::BrowserContext* browser_context,
25 int64_t persistent_notification_id,
26 const GURL& origin);
28 // Persistent id of this notification in the notification database. To be
29 // used when retrieving all information associated with it.
30 int64_t persistent_notification_id() const {
31 return persistent_notification_id_;
34 // NotificationDelegate implementation.
35 void Display() override;
36 void Close(bool by_user) override;
37 void Click() override;
38 std::string id() const override;
40 protected:
41 ~PersistentNotificationDelegate() override;
43 private:
44 content::BrowserContext* browser_context_;
45 int64_t persistent_notification_id_;
46 GURL origin_;
48 std::string id_;
51 #endif // CHROME_BROWSER_NOTIFICATIONS_PERSISTENT_NOTIFICATION_DELEGATE_H_