diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-02-03 09:55:33 +0100 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-02-03 09:55:33 +0100 |
commit | cd44dc59cdfc39534aef4d417e9f3c412e3be139 (patch) | |
tree | 8d89889ba95ed6ec9322e733846cc9cce9d7dff1 /Source/WebKit2/UIProcess/Notifications/WebNotification.h | |
parent | d11f84f5b5cdc0d92a08af01b13472fdd5f9acb9 (diff) | |
download | qtwebkit-cd44dc59cdfc39534aef4d417e9f3c412e3be139.tar.gz |
Imported WebKit commit fce473cb4d55aa9fe9d0b0322a2fffecb731b961 (http://svn.webkit.org/repository/webkit/trunk@106560)
Diffstat (limited to 'Source/WebKit2/UIProcess/Notifications/WebNotification.h')
-rw-r--r-- | Source/WebKit2/UIProcess/Notifications/WebNotification.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebKit2/UIProcess/Notifications/WebNotification.h b/Source/WebKit2/UIProcess/Notifications/WebNotification.h index 0b89a0aab..9447da427 100644 --- a/Source/WebKit2/UIProcess/Notifications/WebNotification.h +++ b/Source/WebKit2/UIProcess/Notifications/WebNotification.h @@ -45,9 +45,9 @@ class WebNotification : public APIObject { public: static const Type APIType = TypeNotification; - static PassRefPtr<WebNotification> create(const String& title, const String& body, const String& originIdentifier, uint64_t notificationID) + static PassRefPtr<WebNotification> create(const String& title, const String& body, const String& originString, uint64_t notificationID) { - return adoptRef(new WebNotification(title, body, originIdentifier, notificationID)); + return adoptRef(new WebNotification(title, body, originString, notificationID)); } const String& title() const { return m_title; } @@ -57,7 +57,7 @@ public: uint64_t notificationID() const { return m_notificationID; } private: - WebNotification(const String& title, const String& body, const String& originIdentifier, uint64_t notificationID); + WebNotification(const String& title, const String& body, const String& originString, uint64_t notificationID); virtual Type type() const { return APIType; } |