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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_
#define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_
#include <string>
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
#include "base/values.h"
#include "chrome/browser/notifications/notification_delegate.h"
#include "third_party/WebKit/public/web/WebTextDirection.h"
#include "ui/message_center/notification.h"
#include "ui/message_center/notification_types.h"
#include "url/gurl.h"
namespace gfx {
class Image;
}
// Representation of a notification to be shown to the user.
class Notification : public message_center::Notification {
public:
Notification(const GURL& origin_url,
const base::string16& title,
const base::string16& body,
const gfx::Image& icon,
const base::string16& display_source,
const base::string16& replace_id,
NotificationDelegate* delegate);
Notification(
message_center::NotificationType type,
const GURL& origin_url,
const base::string16& title,
const base::string16& body,
const gfx::Image& icon,
blink::WebTextDirection dir,
const message_center::NotifierId& notifier_id,
const base::string16& display_source,
const base::string16& replace_id,
const message_center::RichNotificationData& rich_notification_data,
NotificationDelegate* delegate);
Notification(const std::string& id, const Notification& notification);
Notification(const Notification& notification);
~Notification() override;
Notification& operator=(const Notification& notification);
// The origin URL of the script which requested the notification.
const GURL& origin_url() const { return origin_url_; }
// A unique identifier used to update (replace) or remove a notification.
const base::string16& replace_id() const { return replace_id_; }
// Id of the delegate embedded inside this instance.
std::string delegate_id() const { return delegate()->id(); }
NotificationDelegate* delegate() const { return delegate_.get(); }
private:
// The Origin of the page/worker which created this notification.
GURL origin_url_;
// The user-supplied replace ID for the notification.
base::string16 replace_id_;
// A proxy object that allows access back to the JavaScript object that
// represents the notification, for firing events.
scoped_refptr<NotificationDelegate> delegate_;
};
#endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_H_
|