HomeSort by relevance Sort by last modified time
    Searched defs:WebNotification (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebKit/win/
WebNotification.h 31 class WebNotification : public IWebNotification
34 static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0);
36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo);
37 ~WebNotification();
WebNotification.cpp 29 #include "WebNotification.h"
33 // WebNotification ------------------------------------------------------------
35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo)
49 gClassNameCount.add("WebNotification");
52 WebNotification::~WebNotification()
62 gClassNameCount.remove("WebNotification");
65 WebNotification* WebNotification::createInstance(BSTR name /*=0*/, IUnknown* anObject /*=0*/, IPropertyBag* userInfo /*=0*/
    [all...]
  /external/webkit/WebKit/chromium/public/
WebNotification.h 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;
    [all...]
  /external/webkit/WebKit/chromium/src/
WebNotification.cpp 32 #include "WebNotification.h"
50 void WebNotification::reset()
55 void WebNotification::assign(const WebNotification& other)
63 bool WebNotification::lessThan(const WebNotification& other) const
68 bool WebNotification::isHTML() const
73 WebURL WebNotification::url() const
79 WebString WebNotification::icon() const
85 WebString WebNotification::title() cons
    [all...]

Completed in 4652 milliseconds