HomeSort by relevance Sort by last modified time
    Searched defs:scriptURL (Results 1 - 11 of 11) 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 69 KURL scriptURL = worker->resolveURL(url, exceptionState);
70 if (scriptURL.isEmpty())
77 worker->m_scriptLoader->loadAsynchronously(*context, scriptURL, DenyCrossOriginRequests, worker.get());
WorkerThread.cpp 107 KURL scriptURL = m_startupData->m_scriptURL;
134 script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CompilerScriptMapping.js 193 var scriptURL = WebInspector.ParsedURL.completeURL(script.target().resourceTreeModel.inspectedPageURL(), script.sourceURL);
194 if (!scriptURL) {
198 var sourceMapURL = WebInspector.ParsedURL.completeURL(scriptURL, script.sourceMapURL);
219 WebInspector.SourceMap.load(sourceMapURL, scriptURL, sourceMapLoaded.bind(this));
  /external/chromium_org/third_party/WebKit/public/web/
WebEmbeddedWorkerStartData.h 56 WebURL scriptURL;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerContainer.cpp 99 KURL scriptURL = executionContext->completeURL(url);
100 scriptURL.removeFragmentIdentifier();
101 if (!documentOrigin->canRequest(scriptURL)) {
106 m_provider->registerServiceWorker(patternURL, scriptURL, new CallbackPromiseAdapter<ServiceWorker, ServiceWorkerError>(resolver));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.cpp 241 KURL scriptURL = (!elementDocument.isInDocumentWrite() && m_parserInserted) ? elementDocument.url() : KURL();
242 executeScript(ScriptSourceCode(scriptContent(), scriptURL, position));
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 466 String InspectorDebuggerAgent::scriptURL(JavaScriptCallFrame* frame)
483 String topFrameScriptUrl = scriptURL(topFrame.get());
533 String scriptUrl = scriptURL(topFrame.get());
534 if (scriptUrl.isEmpty() || m_cachedSkipStackRegExp->match(scriptUrl) == -1)
    [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 201 milliseconds