diff options
Diffstat (limited to 'WebCore/notifications')
-rw-r--r-- | WebCore/notifications/Notification.h | 8 | ||||
-rw-r--r-- | WebCore/notifications/Notification.idl | 3 |
2 files changed, 0 insertions, 11 deletions
diff --git a/WebCore/notifications/Notification.h b/WebCore/notifications/Notification.h index 47de2a2..98cbfdf 100644 --- a/WebCore/notifications/Notification.h +++ b/WebCore/notifications/Notification.h @@ -68,11 +68,6 @@ namespace WebCore { KURL iconURL() { return m_contents.icon(); } NotificationContents& contents() { return m_contents; } - String dir() const { return m_direction; } - void setDir(const String& dir) { m_direction = dir; } - String replaceId() const { return m_replaceId; } - void setReplaceId(const String& replaceId) { m_replaceId = replaceId; } - DEFINE_ATTRIBUTE_EVENT_LISTENER(display); DEFINE_ATTRIBUTE_EVENT_LISTENER(error); DEFINE_ATTRIBUTE_EVENT_LISTENER(close); @@ -98,9 +93,6 @@ namespace WebCore { KURL m_notificationURL; NotificationContents m_contents; - String m_direction; - String m_replaceId; - bool m_isShowing; NotificationPresenter* m_presenter; diff --git a/WebCore/notifications/Notification.idl b/WebCore/notifications/Notification.idl index 5ca84a5..7f018b7 100644 --- a/WebCore/notifications/Notification.idl +++ b/WebCore/notifications/Notification.idl @@ -42,9 +42,6 @@ module threads { attribute EventListener onerror; attribute EventListener onclose; - attribute DOMString dir; - attribute DOMString replaceId; - // EventTarget interface void addEventListener(in DOMString type, in EventListener listener, |