HomeSort by relevance Sort by last modified time
    Searched refs:notifyData (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginLoadObserver.h 44 const WebURL& notifyURL, void* notifyData)
47 , m_notifyData(notifyData)
WebPluginContainerImpl.h 110 virtual void loadFrameRequest(const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) OVERRIDE;
  /external/chromium_org/content/test/plugin/
plugin_get_javascript_url2_test.cc 47 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);
plugin_get_javascript_url_test.cc 112 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);
plugin_geturl_test.cc 159 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...]
plugin_client.cc 214 void* notifyData) {
221 return plugin->URLNotify(url, reason, notifyData);
  /external/chromium_org/content/shell/tools/plugin/Tests/
GetURLNotifyWithURLThatFailsToLoad.cpp 58 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/
FakeWebPlugin.h 66 virtual void didFinishLoadingFrameRequest(const blink::WebURL&, void* notifyData) OVERRIDE { }
67 virtual void didFailLoadingFrameRequest(const blink::WebURL&, void* notifyData, const blink::WebURLError&) OVERRIDE { }
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginContainer.h 92 // called if the load failed. The given notifyData is passed along to
95 const WebURLRequest&, const WebString& target, bool notifyNeeded, void* notifyData) = 0;
WebPlugin.h 106 const WebURL&, void* notifyData) = 0;
108 const WebURL&, void* notifyData, const WebURLError&) = 0;
  /external/chromium_org/content/shell/renderer/test_runner/
TestPlugin.h 69 virtual void didFinishLoadingFrameRequest(const blink::WebURL&, void* notifyData) { }
70 virtual void didFailLoadingFrameRequest(const blink::WebURL&, void* notifyData, const blink::WebURLError&) { }
  /external/chromium_org/content/shell/tools/plugin/
PluginObject.h 85 void* notifyData);
PluginTest.cpp 119 bool PluginTest::NPP_URLNotify(const char* url, NPReason, void* notifyData) {
144 void* notifyData) {
145 return browser->geturlnotify(m_npp, url, target, notifyData);
PluginTest.h 96 virtual bool NPP_URLNotify(const char* url, NPReason, void* notifyData);
104 void* notifyData);
  /external/chromium_org/third_party/npapi/bindings/
npfunctions.h 61 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);
npapi.h 217 void* notifyData;
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/
npn_gate.cpp 62 NPError NPN_GetURLNotify(NPP instance, const char *url, const char *target, void* notifyData)
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)
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);
npp_gate.cpp 336 void NPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData)
345 logger->logCall(action_npp_url_notify, (DWORD)instance, (DWORD)url, (DWORD)reason, (DWORD)notifyData);
347 epManager->callNPP_URLNotify(instance, url, reason, notifyData);
epmanager.cpp 344 void NPPEntryPointManager::callNPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData)
350 CallNPP_URLNotifyProc(nppfuncs->urlnotify, instance, url, reason, notifyData);
  /external/chromium_org/components/plugins/renderer/
webview_plugin.h 100 void* notifyData) {}
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npapi.h 257 void* notifyData;
702 NPReason reason, void* notifyData);
715 const char* target, void* notifyData);
721 void* notifyData);
  /external/chromium_org/third_party/npapi/npspy/include/
epmanager.h 99 void callNPP_URLNotify(NPP instance, const char* url, NPReason reason, void* notifyData);
  /external/chromium_org/third_party/WebKit/ManualTests/NPN_Invoke/
main.c 50 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)
  /external/chromium_org/content/child/npapi/
plugin_stream.cc 59 stream_.notifyData = notify_data_;
plugin_instance.cc 330 void* notifyData) {
334 npp_functions_->urlnotify(npp_, url, reason, notifyData);

Completed in 1981 milliseconds

1 2