Home | History | Annotate | Download | only in Plugins

Lines Matching refs:url

1136     // If the OBJECT/EMBED tag has no SRC, the URL is passed to us as "".
1203 // The Java plug-in requires the first argument to be the base URL
1319 URL:(NSURL *)URL
1327 self = [super initWithFrame:frame pluginPackage:pluginPackage URL:URL
1487 contentURL:[response URL]
1496 _manualStream->setRequestURL([[[self dataSource] request] URL]);
1547 NSURL *URL = [[JSPluginRequest request] URL];
1548 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL];
1564 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [URL _web_URLCString], NPRES_DONE, [JSPluginRequest notifyData]);
1572 RefPtr<WebNetscapePluginStream> stream = WebNetscapePluginStream::create([NSURLRequest requestWithURL:URL], plugin, [JSPluginRequest sendNotification], [JSPluginRequest notifyData]);
1574 RetainPtr<NSURLResponse> response(AdoptNS, [[NSURLResponse alloc] initWithURL:URL
1596 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [[[pluginRequest request] URL] _web_URLCString], reason, [pluginRequest notifyData]);
1618 NSURL *URL = [request URL];
1619 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL];
1640 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [[[pluginRequest request] URL] _web_URLCString], NPERR_GENERIC_ERROR, [pluginRequest notifyData]);
1674 NSURL *URL = [request URL];
1676 if (!URL)
1697 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL];
1708 if (!SecurityOrigin::canLoad(URL, String(), core([self webFrame])->document()))
1714 // want to potentially kill the plug-in inside of its URL request.
1774 // If we're posting a file, buf is either a file URL or a path to the file.
2183 - (NPError)getVariable:(NPNURLVariable)variable forURL:(const char*)url value:(char**)value length:(uint32*)length
2190 NSURL *URL = [self URLWithCString:url];
2191 if (!URL)
2195 String cookieString = cookies(frame->document(), URL);
2214 NSURL *URL = [self URLWithCString:url];
2215 if (!URL)
2218 CString proxiesUTF8 = proxiesForURL(URL);
2235 - (NPError)setVariable:(NPNURLVariable)variable forURL:(const char*)url value:(const char*)value length:(uint32)length
2239 NSURL *URL = [self URLWithCString:url];
2240 if (!URL)
2248 setCookies(frame->document(), URL, cookieString);
2255 // Can't set the proxy for a URL.
2284 - (char*)resolveURL:(const char*)url forTarget:(const char*)target
2286 WebCore::CString location = [self resolvedURLStringForURL:url target:target];