Searched defs:scriptURL (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/workers/
H A DAbstractWorker.cpp76 KURL scriptURL = scriptExecutionContext()->completeURL(url); local
77 if (!scriptURL.isValid()) {
82 if (!scriptExecutionContext()->securityOrigin()->canAccess(SecurityOrigin::create(scriptURL).get())) {
86 return scriptURL;
H A DDedicatedWorkerThread.cpp42 PassRefPtr<DedicatedWorkerThread> DedicatedWorkerThread::create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerObjectProxy& workerObjectProxy) argument
44 return adoptRef(new DedicatedWorkerThread(scriptURL, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy));
H A DSharedWorker.cpp61 KURL scriptURL = worker->resolveURL(url, ec); local
62 if (scriptURL.isEmpty())
65 SharedWorkerRepository::connect(worker.get(), remotePort.release(), scriptURL, name, ec);
67 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), true);
H A DSharedWorkerThread.cpp41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) argument
43 return adoptRef(new SharedWorkerThread(name, scriptURL, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy));
H A DWorker.cpp63 KURL scriptURL = worker->resolveURL(url, ec); local
64 if (scriptURL.isEmpty())
68 worker->m_scriptLoader->loadAsynchronously(context, scriptURL, DenyCrossOriginRequests, worker.get());
73 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), false);
H A DWorkerThread.cpp67 static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
69 return new WorkerThreadStartupData(scriptURL, userAgent, sourceCode);
76 WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode);
79 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
80 : m_scriptURL(scriptURL.copy())
86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) argument
90 , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode))
H A DWorkerMessagingProxy.cpp237 void WorkerMessagingProxy::startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode) argument
239 RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(scriptURL, userAgent, sourceCode, *this, *this);
/external/webkit/Source/WebCore/loader/
H A DSubframeLoader.cpp74 KURL scriptURL; local
77 scriptURL = completeURL(urlString); // completeURL() encodes the URL.
86 if (!scriptURL.isEmpty())
87 frame->script()->executeIfJavaScriptURL(scriptURL);
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerClientImpl.cpp134 void WebWorkerClientImpl::startWorkerContext(const KURL& scriptURL, argument
145 scriptURL.string(),
150 m_webWorker->startWorkerContext(scriptURL, userAgent, sourceCode);
318 const String& scriptURL,
322 thisPtr->m_webWorker->startWorkerContext(KURL(ParsedURLString, scriptURL),
316 startWorkerContextTask(ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& scriptURL, const String& userAgent, const String& sourceCode) argument

Completed in 2501 milliseconds