Home | History | Annotate | Download | only in public

Lines Matching refs:WebNotification

48 class WebNotification {
50 WebNotification() : m_private(0) { }
51 WebNotification(const WebNotification& other) : m_private(0) { assign(other); }
53 ~WebNotification() { reset(); }
56 WEBKIT_API void assign(const WebNotification&);
58 WebNotification& operator=(const WebNotification& other)
64 // Operators required to put WebNotification in an ordered map.
65 bool equals(const WebNotification& other) const { return m_private == other.m_private; }
66 bool lessThan(const WebNotification& other) const;
91 WebNotification(const WTF::PassRefPtr<WebCore::Notification>&);
92 WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&);
101 inline bool operator==(const WebNotification& a, const WebNotification& b)
106 inline bool operator!=(const WebNotification& a, const WebNotification& b)
111 inline bool operator<(const WebNotification& a, const WebNotification& b)