Searched refs:WebNotification (Results 1 - 19 of 19) sorted by relevance

/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebNotification.cpp29 #include "WebNotification.h"
33 // WebNotification ------------------------------------------------------------
35 WebNotification::WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo) function in class:WebNotification
49 gClassNameCount.add("WebNotification");
52 WebNotification::~WebNotification()
62 gClassNameCount.remove("WebNotification");
65 WebNotification* WebNotification
[all...]
H A DWebNotification.h31 class WebNotification : public IWebNotification class in inherits:IWebNotification
34 static WebNotification* createInstance(BSTR name = 0, IUnknown* anObject = 0, IPropertyBag* userInfo = 0);
36 WebNotification(BSTR name, IUnknown* anObject, IPropertyBag* userInfo);
37 ~WebNotification();
H A DWebNotificationCenter.cpp30 #include "WebNotification.h"
186 COMPtr<WebNotification> notification(AdoptCOM, WebNotification::createInstance(notificationName, anObject, userInfo));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Notifications/
H A DWebNotificationProvider.h37 class WebNotification;
44 void show(WebPageProxy*, WebNotification*);
45 void cancel(WebNotification*);
46 void didDestroyNotification(WebNotification*);
H A DWebNotification.cpp27 #include "WebNotification.h"
36 WebNotification::WebNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID) function in class:WebKit::WebNotification
H A DWebNotification.h44 class WebNotification : public TypedAPIObject<APIObject::TypeNotification> { class in namespace:WebKit
46 static PassRefPtr<WebNotification> create(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID)
48 return adoptRef(new WebNotification(title, body, iconURL, tag, lang, dir, originString, notificationID));
62 WebNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID);
H A DWebNotificationProvider.cpp32 #include "WebNotification.h"
39 void WebNotificationProvider::show(WebPageProxy* page, WebNotification* notification)
47 void WebNotificationProvider::cancel(WebNotification* notification)
55 void WebNotificationProvider::didDestroyNotification(WebNotification* notification)
H A DWebNotificationManagerProxy.cpp32 #include "WebNotification.h"
106 RefPtr<WebNotification> notification = WebNotification::create(title, body, iconURL, tag, lang, dir, originString, globalNotificationID);
115 if (WebNotification* notification = m_notifications.get(make_pair(webPage->pageID(), pageNotificationID)).second.get())
123 WebNotification* notification = globalIDNotificationPair.second.get();
H A DWebNotificationManagerProxy.h86 HashMap<pair<uint64_t, uint64_t>, pair<uint64_t, RefPtr<WebNotification>>> m_notifications;
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebNotificationInternal.h29 #import "WebNotification.h"
37 WebCore::Notification* core(WebNotification *);
39 @interface WebNotification (WebNotificationInternal)
H A DWebNotification.h32 @interface WebNotification : NSObject
H A DWebNotification.mm29 #import "WebNotification.h"
58 @implementation WebNotification (WebNotificationInternal)
59 Notification* core(WebNotification *notification)
78 @implementation WebNotification
H A DWebViewPrivate.h42 @class WebNotification;
718 - (void)showNotification:(WebNotification *)notification fromWebView:(WebView *)webView;
719 - (void)cancelNotification:(WebNotification *)notification;
720 - (void)notificationDestroyed:(WebNotification *)notification;
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebNotificationClient.h42 @class WebNotification;
77 HashMap<RefPtr<WebCore::Notification>, RetainPtr<WebNotification> > m_notificationMap;
79 typedef HashMap<RefPtr<WebCore::ScriptExecutionContext>, Vector<RetainPtr<WebNotification> > > NotificationContextMap;
H A DWebNotificationClient.mm90 RetainPtr<WebNotification> webNotification = adoptNS([[WebNotification alloc] initWithCoreNotification:notification notificationID:notificationID]);
93 NotificationContextMap::iterator it = m_notificationContextMap.add(notification->scriptExecutionContext(), Vector<RetainPtr<WebNotification> >()).iterator;
107 WebNotification *webNotification = m_notificationMap.get(notification).get();
124 Vector<RetainPtr<WebNotification> >& webNotifications = it->value;
128 WebNotification *webNotification = webNotifications[i].get();
144 RetainPtr<WebNotification> webNotification = m_notificationMap.take(notification);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKNotification.cpp30 #include "WebNotification.h"
37 return toAPI(WebNotification::APIType);
H A DWKAPICast.h85 class WebNotification;
133 WK_ADD_API_MAPPING(WKNotificationRef, WebNotification)
/macosx-10.9.5/WebKit-7537.78.2/win/WebCoreSupport/
H A DWebEditorClient.h35 class WebNotification;
73 void webViewDidChangeTypingStyle(WebNotification*);
74 void webViewDidChangeSelection(WebNotification*);
H A DWebEditorClient.cpp31 #include "WebNotification.h"
300 void WebEditorClient::webViewDidChangeTypingStyle(WebNotification* /*notification*/)
303 void WebEditorClient::webViewDidChangeSelection(WebNotification* /*notification*/)

Completed in 102 milliseconds