Searched refs:notificationName (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebNotificationCenter.idl51 //- (void)addObserver:(id)anObserver selector:(SEL)aSelector name:(NSString *)notificationName object:(id)anObject
52 HRESULT addObserver([in] IWebNotificationObserver* observer, [in] BSTR notificationName, [in] IUnknown* anObject);
57 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject
58 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject userInfo:(NSDictionary *)userInfo
59 HRESULT postNotificationName([in] BSTR notificationName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
62 //- (void)removeObserver:(id)anObserver name:(NSString *)notificationName object:(id)anObject
63 HRESULT removeObserver([in] IWebNotificationObserver* anObserver, [in] BSTR notificationName, [in] IUnknown* anObject);
/external/webkit/Source/WebCore/accessibility/mac/
H A DAccessibilityObjectWrapper.h46 - (void)accessibilityPostedNotification:(NSString *)notificationName;
H A DAccessibilityObjectWrapper.mm2922 - (void)accessibilityPostedNotification:(NSString *)notificationName
2925 NSDictionary* userInfo = [NSDictionary dictionaryWithObjectsAndKeys:notificationName, @"notificationName", nil];
/external/webkit/Source/WebKit/win/
H A DWebNotificationCenter.h54 /* [in] */ BSTR notificationName,
61 /* [in] */ BSTR notificationName,
67 /* [in] */ BSTR notificationName,
72 void postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject);
H A DWebNotificationCenter.cpp113 void WebNotificationCenter::postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject) argument
115 String name(notificationName, SysStringLen(notificationName));
145 /* [in] */ BSTR notificationName,
148 String name(notificationName, SysStringLen(notificationName));
181 /* [in] */ BSTR notificationName,
185 COMPtr<WebNotification> notification(AdoptCOM, WebNotification::createInstance(notificationName, anObject, userInfo));
186 postNotificationInternal(notification.get(), notificationName, anObject);
192 /* [in] */ BSTR notificationName,
143 addObserver( IWebNotificationObserver* observer, BSTR notificationName, IUnknown* anObject) argument
180 postNotificationName( BSTR notificationName, IUnknown* anObject, IPropertyBag* userInfo) argument
190 removeObserver( IWebNotificationObserver* anObserver, BSTR notificationName, IUnknown* anObject) argument
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.h55 void didBeginEditing(WebPage*, StringImpl* notificationName);
56 void didEndEditing(WebPage*, StringImpl* notificationName);
57 void didChange(WebPage*, StringImpl* notificationName);
58 void didChangeSelection(WebPage*, StringImpl* notificationName);
H A DInjectedBundlePageEditorClient.cpp104 void InjectedBundlePageEditorClient::didBeginEditing(WebPage* page, StringImpl* notificationName) argument
107 m_client.didBeginEditing(toAPI(page), toAPI(notificationName), m_client.clientInfo);
110 void InjectedBundlePageEditorClient::didEndEditing(WebPage* page, StringImpl* notificationName) argument
113 m_client.didEndEditing(toAPI(page), toAPI(notificationName), m_client.clientInfo);
116 void InjectedBundlePageEditorClient::didChange(WebPage* page, StringImpl* notificationName) argument
119 m_client.didChange(toAPI(page), toAPI(notificationName), m_client.clientInfo);
122 void InjectedBundlePageEditorClient::didChangeSelection(WebPage* page, StringImpl* notificationName) argument
125 m_client.didChangeSelection(toAPI(page), toAPI(notificationName), m_client.clientInfo);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.h134 static void didBeginEditing(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
135 static void didEndEditing(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
136 static void didChange(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
137 static void didChangeSelection(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
145 void didBeginEditing(WKStringRef notificationName);
146 void didEndEditing(WKStringRef notificationName);
147 void didChange(WKStringRef notificationName);
148 void didChangeSelection(WKStringRef notificationName);
H A DInjectedBundlePage.cpp865 void InjectedBundlePage::didBeginEditing(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo) argument
867 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didBeginEditing(notificationName);
870 void InjectedBundlePage::didEndEditing(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo) argument
872 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didEndEditing(notificationName);
875 void InjectedBundlePage::didChange(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo) argument
877 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didChange(notificationName);
880 void InjectedBundlePage::didChangeSelection(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo) argument
882 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didChangeSelection(notificationName);
976 void InjectedBundlePage::didBeginEditing(WKStringRef notificationName) argument
982 InjectedBundle::shared().os() << "EDITING DELEGATE: webViewDidBeginEditing:" << notificationName << "\
985 didEndEditing(WKStringRef notificationName) argument
994 didChange(WKStringRef notificationName) argument
1003 didChangeSelection(WKStringRef notificationName) argument
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DAccessibilityUIElementMac.mm130 NSString *notificationName = [[notification userInfo] objectForKey:@"notificationName"];
131 if (!notificationName)
134 JSRetainPtr<JSStringRef> jsNotification(Adopt, [notificationName createJSStringRef]);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h203 typedef void (*WKBundlePageEditingNotification)(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo);

Completed in 111 milliseconds