Searched refs:notifyData (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginLoadObserver.h44 const WebURL& notifyURL, void* notifyData)
47 , m_notifyData(notifyData)
43 WebPluginLoadObserver(WebPluginContainerImpl* pluginContainer, const WebURL& notifyURL, void* notifyData) argument
H A DWebPluginContainerImpl.h115 virtual void loadFrameRequest(const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) OVERRIDE;
/external/chromium_org/content/test/plugin/
H A Dplugin_get_javascript_url2_test.cc47 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
49 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
75 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
77 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
97 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
99 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
H A Dplugin_get_javascript_url_test.cc112 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
114 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
149 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
151 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
181 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
183 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
H A Dplugin_geturl_test.cc159 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
189 stream->notifyData);
245 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
248 stream->notifyData);
279 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
282 stream->notifyData);
324 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
346 reinterpret_cast<unsigned long>(stream->notifyData);
375 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
378 reinterpret_cast<unsigned long>(stream->notifyData);
[all...]
H A Dplugin_client.cc214 void* notifyData) {
221 return plugin->URLNotify(url, reason, notifyData);
213 NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) argument
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DGetURLNotifyWithURLThatFailsToLoad.cpp58 virtual bool NPP_URLNotify(const char* url, NPReason reason, void* notifyData) OVERRIDE
68 if (notifyData != reinterpret_cast<void*>(0x12345678))
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DFakeWebPlugin.h65 virtual void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) OVERRIDE { }
66 virtual void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebURLError&) OVERRIDE { }
/external/chromium_org/third_party/WebKit/public/web/
H A DWebPlugin.h113 const WebURL&, void* notifyData) = 0;
115 const WebURL&, void* notifyData, const WebURLError&) = 0;
H A DWebPluginContainer.h98 // called if the load failed. The given notifyData is passed along to
101 const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) = 0;
/external/chromium_org/content/shell/tools/plugin/
H A DPluginObject.h85 void* notifyData);
H A DPluginTest.cpp119 bool PluginTest::NPP_URLNotify(const char* url, NPReason, void* notifyData) { argument
144 void* notifyData) {
145 return browser->geturlnotify(m_npp, url, target, notifyData);
142 NPN_GetURLNotify(const char* url, const char* target, void* notifyData) argument
H A DPluginTest.h96 virtual bool NPP_URLNotify(const char* url, NPReason, void* notifyData);
104 void* notifyData);
H A Dmain.cpp819 void NPP_URLNotify(NPP instance, const char *url, NPReason reason, void *notifyData) argument
822 if (obj->pluginTest->NPP_URLNotify(url, reason, notifyData))
828 handleCallback(obj, url, reason, notifyData);
/external/chromium_org/third_party/npapi/bindings/
H A Dnpfunctions.h61 typedef void (* NP_LOADDS NPP_URLNotifyProcPtr)(NPP instance, const char* url, NPReason reason, void* notifyData);
68 typedef void (* NP_LOADDS NPP_URLRedirectNotifyPtr)(NPP instance, const char* url, int32_t status, void* notifyData);
74 typedef NPError (*NPN_GetURLNotifyProcPtr)(NPP instance, const char* url, const char* window, void* notifyData);
75 typedef NPError (*NPN_PostURLNotifyProcPtr)(NPP instance, const char* url, const char* window, uint32_t len, const char* buf, NPBool file, void* notifyData);
128 typedef void (*NPN_URLRedirectResponsePtr)(NPP instance, void* notifyData, NPBool allow);
H A Dnpapi.h217 void* notifyData; member in struct:_NPStream
845 NPReason reason, void* notifyData);
850 void NP_LOADDS NPP_URLRedirectNotify(NPP instance, const char* url, int32_t status, void* notifyData);
858 const char* target, void* notifyData);
864 void* notifyData);
914 void NP_LOADDS NPN_URLRedirectResponse(NPP instance, void* notifyData, NPBool allow);
/external/chromium_org/third_party/npapi/npspy/common/
H A Dnpn_gate.cpp62 NPError NPN_GetURLNotify(NPP instance, const char *url, const char *target, void* notifyData) argument
69 logger->logCall(action_npn_get_url_notify, (DWORD)instance, (DWORD)url, (DWORD)target, (DWORD)notifyData);
72 rv = NPNFuncs.geturlnotify(instance, url, target, notifyData);
95 NPError NPN_PostURLNotify(NPP instance, const char* url, const char* window, uint32 len, const char* buf, NPBool file, void* notifyData) argument
102 logger->logCall(action_npn_post_url_notify, (DWORD)instance, (DWORD)url, (DWORD)window, (DWORD)len, (DWORD)buf, (DWORD)file, (DWORD)notifyData);
105 rv = NPNFuncs.posturlnotify(instance, url, window, len, buf, file, notifyData);
H A Dnpp_gate.cpp336 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) argument
345 logger->logCall(action_npp_url_notify, (DWORD)instance, (DWORD)url, (DWORD)reason, (DWORD)notifyData);
347 epManager->callNPP_URLNotify(instance, url, reason, notifyData);
H A Depmanager.cpp344 void NPPEntryPointManager::callNPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) argument
350 CallNPP_URLNotifyProc(nppfuncs->urlnotify, instance, url, reason, notifyData);
/external/chromium_org/third_party/npapi/npspy/extern/plugin/
H A Dnpapi.h257 void* notifyData; member in struct:_NPStream
702 NPReason reason, void* notifyData);
715 const char* target, void* notifyData);
721 void* notifyData);
/external/chromium_org/third_party/npapi/npspy/include/
H A Depmanager.h99 void callNPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData);
/external/chromium_org/components/plugins/renderer/
H A Dwebview_plugin.h103 void* notifyData) {}
102 didFinishLoadingFrameRequest(const blink::WebURL& url, void* notifyData) argument
/external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/
H A Dmain.c50 void NPP_URLNotify(NPP instance, const char* URL, NPReason reason, void* notifyData);
218 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData) argument
/external/chromium_org/content/child/npapi/
H A Dplugin_stream.cc59 stream_.notifyData = notify_data_;
H A Dplugin_instance.cc330 void* notifyData) {
334 npp_functions_->urlnotify(npp_, url, reason, notifyData);
328 NPP_URLNotify(const char* url, NPReason reason, void* notifyData) argument

Completed in 2771 milliseconds

12