HomeSort by relevance Sort by last modified time
    Searched defs:scriptURL (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.cpp 54 KURL scriptURL = executionContext()->completeURL(url);
55 if (!scriptURL.isValid()) {
61 if (!executionContext()->securityOrigin()->canRequest(scriptURL)) {
62 exceptionState.throwSecurityError("Script at '" + scriptURL.elidedString() + "' cannot be accessed from origin '" + executionContext()->securityOrigin()->toString() + "'.");
66 if (executionContext()->contentSecurityPolicy() && !executionContext()->contentSecurityPolicy()->allowWorkerContextFromSource(scriptURL)) {
67 exceptionState.throwSecurityError("Access to the script at '" + scriptURL.elidedString() + "' is denied by the document's Content Security Policy.");
71 return scriptURL;
SharedWorker.cpp 80 KURL scriptURL = worker->resolveURL(url, exceptionState);
81 if (scriptURL.isEmpty())
85 document->frame()->loader().client()->sharedWorkerRepositoryClient()->connect(worker.get(), remotePort.release(), scriptURL, name, exceptionState);
Worker.cpp 68 KURL scriptURL = worker->resolveURL(url, exceptionState);
69 if (scriptURL.isEmpty())
73 worker->m_scriptLoader->loadAsynchronously(*context, scriptURL, DenyCrossOriginRequests, worker.get());
WorkerThread.cpp 248 KURL scriptURL = m_startupData->m_scriptURL;
283 script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
  /external/chromium_org/third_party/WebKit/public/web/
WebEmbeddedWorkerStartData.h 56 WebURL scriptURL;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
CompilerScriptMapping.js 244 var scriptURL = WebInspector.ParsedURL.completeURL(script.target().resourceTreeModel.inspectedPageURL(), script.sourceURL);
245 if (!scriptURL) {
249 var sourceMapURL = WebInspector.ParsedURL.completeURL(scriptURL, script.sourceMapURL);
270 WebInspector.SourceMap.load(sourceMapURL, scriptURL, sourceMapLoaded.bind(this));
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorker.cpp 115 String ServiceWorker::scriptURL() const
ServiceWorkerContainer.cpp 131 KURL scriptURL = executionContext->completeURL(url);
132 scriptURL.removeFragmentIdentifier();
133 if (!documentOrigin->canRequest(scriptURL)) {
138 m_provider->registerServiceWorker(patternURL, scriptURL, new CallbackPromiseAdapter<ServiceWorkerRegistration, ServiceWorkerError>(resolver));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.cpp 246 KURL scriptURL = (!elementDocument.isInDocumentWrite() && m_parserInserted) ? elementDocument.url() : KURL();
247 executeScript(ScriptSourceCode(scriptContent(), scriptURL, position));
  /external/chromium_org/third_party/WebKit/Source/web/
WebEmbeddedWorkerImpl.cpp 83 void load(ExecutionContext* loadingContext, const KURL& scriptURL, const Closure& callback)
89 *loadingContext, scriptURL, DenyCrossOriginRequests, this);
309 webFrame->frame()->loader().load(FrameLoadRequest(0, ResourceRequest(m_workerStartData.scriptURL), SubstituteData(buffer, "text/html", "UTF-8", KURL())));
366 m_workerStartData.scriptURL,
409 KURL scriptURL = m_mainScriptLoader->url();
412 scriptURL,
427 m_workerInspectorProxy->workerThreadCreated(document, m_workerThread.get(), scriptURL);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 488 PassRefPtrWillBeRawPtr<JavaScriptCallFrame> InspectorDebuggerAgent::topCallFrameSkipUnknownSources(String* scriptURL, bool* isBlackboxed)
497 *scriptURL = scriptSourceURL(it->value);
499 || (m_cachedSkipStackRegExp && !scriptURL->isEmpty() && m_cachedSkipStackRegExp->match(*scriptURL) != -1);
567 String scriptUrl;
569 RefPtrWillBeRawPtr<JavaScriptCallFrame> topFrame = topCallFrameSkipUnknownSources(&scriptUrl, &isBlackboxed);
600 String scriptUrl;
602 RefPtrWillBeRawPtr<JavaScriptCallFrame> topFrame = topCallFrameSkipUnknownSources(&scriptUrl, &isBlackboxed);
    [all...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 

Completed in 248 milliseconds