/external/webkit/Source/WebKit/chromium/src/ |
D | WebNotification.cpp | 52 void WebNotification::reset() in reset() 57 void WebNotification::assign(const WebNotification& other) in assign() 65 bool WebNotification::lessThan(const WebNotification& other) const in lessThan() 70 bool WebNotification::isHTML() const in isHTML() 75 WebURL WebNotification::url() const in url() 81 WebURL WebNotification::iconURL() const in iconURL() 87 WebString WebNotification::title() const in title() 93 WebString WebNotification::body() const in body() 99 WebTextDirection WebNotification::direction() const in direction() 106 WebString WebNotification::replaceId() const in replaceId() [all …]
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebNotification.h | 49 class WebNotification { 51 WebNotification() : m_private(0) { } in WebNotification() function 52 WebNotification(const WebNotification& other) : m_private(0) { assign(other); } in WebNotification() function 54 ~WebNotification() { reset(); } in ~WebNotification() 57 WEBKIT_API void assign(const WebNotification&); 59 WebNotification& operator=(const WebNotification& other) 66 bool equals(const WebNotification& other) const { return m_private == other.m_private; } in equals() 67 WEBKIT_API bool lessThan(const WebNotification& other) const; 100 WebNotification(const WTF::PassRefPtr<WebCore::Notification>&); 101 WebNotification& operator=(const WTF::PassRefPtr<WebCore::Notification>&); [all …]
|
D | WebNotificationPresenter.h | 41 class WebNotification; variable 54 virtual bool show(const WebNotification&) = 0; 57 virtual void cancel(const WebNotification&) = 0; 61 virtual void objectDestroyed(const WebNotification&) = 0;
|
/external/webkit/Source/WebKit/win/ |
D | WebNotification.cpp | 35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo) in WebNotification() function in WebNotification 52 WebNotification::~WebNotification() in ~WebNotification() 65 WebNotification* WebNotification::createInstance(BSTR name /*=0*/, IUnknown* anObject /*=0*/, IProp… in createInstance() 67 WebNotification* instance = new WebNotification(name, anObject, userInfo); in createInstance() 74 HRESULT STDMETHODCALLTYPE WebNotification::QueryInterface(REFIID riid, void** ppvObject) in QueryInterface() 88 ULONG STDMETHODCALLTYPE WebNotification::AddRef(void) in AddRef() 93 ULONG STDMETHODCALLTYPE WebNotification::Release(void) in Release() 104 HRESULT STDMETHODCALLTYPE WebNotification::notificationWithName( in notificationWithName() 113 HRESULT STDMETHODCALLTYPE WebNotification::name( in name() 126 HRESULT STDMETHODCALLTYPE WebNotification::getObject( in getObject() [all …]
|
D | WebNotification.h | 31 class WebNotification : public IWebNotification 34 …static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userIn… 36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo); 37 ~WebNotification();
|
D | WebNotificationCenter.cpp | 185 …COMPtr<WebNotification> notification(AdoptCOM, WebNotification::createInstance(notificationName, a… in postNotificationName()
|
D | ChangeLog-2009-06-16 | 7320 * WebNotification.h: 13646 * WebNotification.cpp: 13647 * WebNotification.h: 19725 * WebNotification.cpp: 23563 * WebNotification.cpp: Added. 23564 (WebNotification::WebNotification): 23565 (WebNotification::~WebNotification): 23566 (WebNotification::createInstance): 23567 (WebNotification::QueryInterface): 23568 (WebNotification::AddRef): [all …]
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | NotificationPresenter.cpp | 47 static WebString identifierForNotification(const WebNotification& notification) in identifierForNotification() 56 WebNotification* notification = static_cast<WebNotification*>(context); in deferredDisplayDispatch() 74 const WebNotification& notification = m_activeNotifications.find(id)->second; in simulateClick() 75 WebNotification eventTarget(notification); in simulateClick() 81 bool NotificationPresenter::show(const WebNotification& notification) in show() 110 webKitClient()->callOnMainThread(deferredDisplayDispatch, new WebNotification(notification)); in show() 114 void NotificationPresenter::cancel(const WebNotification& notification) in cancel() 118 WebNotification eventTarget(notification); in cancel() 125 void NotificationPresenter::objectDestroyed(const WebKit::WebNotification& notification) in objectDestroyed()
|
D | NotificationPresenter.h | 55 virtual bool show(const WebKit::WebNotification&); 56 virtual void cancel(const WebKit::WebNotification&); 57 virtual void objectDestroyed(const WebKit::WebNotification&); 71 HashMap<WTF::String, WebKit::WebNotification> m_activeNotifications;
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebEditorClient.h | 35 class WebNotification; variable 71 void webViewDidChangeTypingStyle(WebNotification*); 72 void webViewDidChangeSelection(WebNotification*);
|
D | WebEditorClient.cpp | 287 void WebEditorClient::webViewDidChangeTypingStyle(WebNotification* /*notification*/) in webViewDidChangeTypingStyle() argument 290 void WebEditorClient::webViewDidChangeSelection(WebNotification* /*notification*/) in webViewDidChangeSelection() argument
|
/external/webkit/Source/WebKit/chromium/ |
D | WebKit.gyp | 223 'public/WebNotification.h', 517 'src/WebNotification.cpp',
|
D | ChangeLog-2011-02-16 | 441 [chromium] Remove deprecated method WebNotification::dir 444 * public/WebNotification.h: 445 * src/WebNotification.cpp: 7125 * src/WebNotification.cpp: 7126 (WebKit::WebNotification::dispatchClickEvent): 10164 * public/WebNotification.h: 10165 * src/WebNotification.cpp: 10166 (WebKit::WebNotification::dispatchClickEvent): 11603 * public/WebNotification.h: 11604 * src/WebNotification.cpp: [all …]
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 1147 [chromium] Remove deprecated method WebNotification::dir
|