Home | History | Annotate | Download | only in public

Lines Matching refs:WebNotification

49 class WebNotification {
51 WebNotification() : m_private(0) { }
52 WebNotification(const WebNotification& other) : m_private(0) { assign(other); }
54 ~WebNotification() { reset(); }
57 WEBKIT_API void assign(const WebNotification&);
59 WebNotification& operator=(const WebNotification& other)
65 // Operators required to put WebNotification in an ordered map.
66 bool equals(const WebNotification& other) const { return m_private == other.m_private; }
67 WEBKIT_API bool lessThan(const WebNotification& other) const;
100 WebNotification(const WTF::PassRefPtr<WebCore::Notification>&);
101 WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&);
110 inline bool operator==(const WebNotification& a, const WebNotification& b)
115 inline bool operator!=(const WebNotification& a, const WebNotification& b)
120 inline bool operator<(const WebNotification& a, const WebNotification& b)