Home
last modified time | relevance | path

Searched refs:scriptURL (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/workers/
DWorkerThread.cpp67 …static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, … in create()
69 return new WorkerThreadStartupData(scriptURL, userAgent, sourceCode); in create()
76 … WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode);
79 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, co… in WorkerThreadStartupData() argument
80 : m_scriptURL(scriptURL.copy()) in WorkerThreadStartupData()
86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode… in WorkerThread() argument
90 , m_startupData(WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode)) in WorkerThread()
DAbstractWorker.cpp76 KURL scriptURL = scriptExecutionContext()->completeURL(url); in resolveURL() local
77 if (!scriptURL.isValid()) { in resolveURL()
82 …if (!scriptExecutionContext()->securityOrigin()->canAccess(SecurityOrigin::create(scriptURL).get()… in resolveURL()
86 return scriptURL; in resolveURL()
DSharedWorker.cpp61 KURL scriptURL = worker->resolveURL(url, ec); in create() local
62 if (scriptURL.isEmpty()) in create()
65 SharedWorkerRepository::connect(worker.get(), remotePort.release(), scriptURL, name, ec); in create()
67 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), true); in create()
DWorker.cpp63 KURL scriptURL = worker->resolveURL(url, ec); in create() local
64 if (scriptURL.isEmpty()) in create()
68 …worker->m_scriptLoader->loadAsynchronously(context, scriptURL, DenyCrossOriginRequests, worker.get… in create()
73 InspectorInstrumentation::didCreateWorker(context, worker->asID(), scriptURL.string(), false); in create()
DSharedWorkerThread.cpp41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL in create() argument
43 …return adoptRef(new SharedWorkerThread(name, scriptURL, userAgent, sourceCode, workerLoaderProxy, … in create()
DDedicatedWorkerThread.cpp42 PassRefPtr<DedicatedWorkerThread> DedicatedWorkerThread::create(const KURL& scriptURL, const String… in create() argument
44 …return adoptRef(new DedicatedWorkerThread(scriptURL, userAgent, sourceCode, workerLoaderProxy, wor… in create()
DWorkerContextProxy.h52 …virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sour…
DDedicatedWorkerThread.h43 …static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, co…
DWorkerMessagingProxy.h56 …virtual void startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sour…
DWorkerMessagingProxy.cpp237 void WorkerMessagingProxy::startWorkerContext(const KURL& scriptURL, const String& userAgent, const… in startWorkerContext() argument
239 …RefPtr<DedicatedWorkerThread> thread = DedicatedWorkerThread::create(scriptURL, userAgent, sourceC… in startWorkerContext()
/external/webkit/Source/WebCore/inspector/front-end/
DInjectedFakeWorker.js61 var scriptURL = this._expandURLAndCheckOrigin(document.baseURI, location.href, url);
67 this._buildWorker(scriptURL);
69 InjectedScriptHost.didCreateWorker(this._id, scriptURL.url, false);
244 var scriptURL = new URL(baseURL).completeWith(url);
246 if (!scriptURL.sameOrigin(origin))
248 return scriptURL;
DDebuggerPresentationModel.js77 sourceFileForScriptURL: function(scriptURL) argument
79 return this._sourceFiles[scriptURL];
/external/webkit/Source/WebKit/chromium/src/
DWebWorkerClientImpl.cpp134 void WebWorkerClientImpl::startWorkerContext(const KURL& scriptURL, in startWorkerContext() argument
145 scriptURL.string(), in startWorkerContext()
150 m_webWorker->startWorkerContext(scriptURL, userAgent, sourceCode); in startWorkerContext()
318 const String& scriptURL, in startWorkerContextTask() argument
322 thisPtr->m_webWorker->startWorkerContext(KURL(ParsedURLString, scriptURL), in startWorkerContextTask()
DWebWorkerClientImpl.h111 const WTF::String& scriptURL,
/external/webkit/Source/WebCore/bindings/js/
DJSWorkerCustom.cpp54 UString scriptURL = exec->argument(0).toString(exec); in constructJSWorker() local
62 RefPtr<Worker> worker = Worker::create(ustringToString(scriptURL), window->document(), ec); in constructJSWorker()
DJSSharedWorkerCustom.cpp61 UString scriptURL = exec->argument(0).toString(exec); in constructJSSharedWorker() local
72 …RefPtr<SharedWorker> worker = SharedWorker::create(ustringToString(scriptURL), ustringToString(nam… in constructJSSharedWorker()
/external/webkit/Source/WebCore/loader/
DSubframeLoader.cpp74 KURL scriptURL; in requestFrame() local
77 scriptURL = completeURL(urlString); // completeURL() encodes the URL. in requestFrame()
86 if (!scriptURL.isEmpty()) in requestFrame()
87 frame->script()->executeIfJavaScriptURL(scriptURL); in requestFrame()
/external/webkit/Source/WebKit/chromium/public/
DWebWorker.h49 virtual void startWorkerContext(const WebURL& scriptURL,
DWebSharedWorker.h60 virtual void startWorkerContext(const WebURL& scriptURL,