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

  /external/chromium_org/third_party/WebKit/Source/core/workers/
AbstractWorker.cpp 65 KURL scriptURL = scriptExecutionContext()->completeURL(url);
66 if (!scriptURL.isValid()) {
71 if (!scriptExecutionContext()->securityOrigin()->canRequest(scriptURL)) {
76 if (scriptExecutionContext()->contentSecurityPolicy() && !scriptExecutionContext()->contentSecurityPolicy()->allowScriptFromSource(scriptURL)) {
81 return scriptURL;
WorkerThreadStartupData.cpp 38 WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients> workerClients)
39 : m_scriptURL(scriptURL.copy())
WorkerThreadStartupData.h 48 static PassOwnPtr<WorkerThreadStartupData> create(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients> workerClients)
50 return adoptPtr(new WorkerThreadStartupData(scriptURL, userAgent, sourceCode, startMode, contentSecurityPolicy, contentSecurityPolicyType, workerClients));
64 WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassOwnPtr<WorkerClients>);
SharedWorker.idl 34 Constructor(DOMString scriptURL, [Default=NullString] optional DOMString name),
SharedWorker.cpp 68 KURL scriptURL = worker->resolveURL(url, es);
69 if (scriptURL.isEmpty())
80 SharedWorkerRepository::connect(worker.get(), remotePort.release(), scriptURL, name, es);
Worker.cpp 65 KURL scriptURL = worker->resolveURL(url, es);
66 if (scriptURL.isEmpty())
73 worker->m_scriptLoader->loadAsynchronously(context, scriptURL, DenyCrossOriginRequests, worker.get());
WorkerGlobalScopeProxy.h 56 virtual void startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode) = 0;
WorkerThread.cpp 107 KURL scriptURL = m_startupData->m_scriptURL;
128 script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
WorkerMessagingProxy.h 55 virtual void startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode) OVERRIDE;
WorkerMessagingProxy.cpp 267 void WorkerMessagingProxy::startWorkerGlobalScope(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode)
273 OwnPtr<WorkerThreadStartupData> startupData = WorkerThreadStartupData::create(scriptURL, userAgent, sourceCode, startMode, document->contentSecurityPolicy()->deprecatedHeader(), document->contentSecurityPolicy()->deprecatedHeaderType(), m_workerClients.release());
279 InspectorInstrumentation::didStartWorkerGlobalScope(m_scriptExecutionContext.get(), this, scriptURL);
  /external/chromium_org/third_party/WebKit/public/web/
WebSharedWorker.h 61 virtual void startWorkerContext(const WebURL& scriptURL,
WebPermissionClient.h 63 virtual bool allowScriptFromSource(WebFrame*, bool enabledPerSettings, const WebURL& scriptURL) { return enabledPerSettings; }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameElementBase.cpp 86 KURL scriptURL;
89 scriptURL = url;
95 if (!contentFrame() || scriptURL.isEmpty())
97 contentFrame()->script()->executeScriptIfJavaScriptURL(scriptURL);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CompilerScriptMapping.js 179 var scriptURL = WebInspector.ParsedURL.completeURL(WebInspector.inspectedPageURL, script.sourceURL);
180 if (!scriptURL) {
184 var sourceMapURL = WebInspector.ParsedURL.completeURL(scriptURL, script.sourceMapURL);
205 WebInspector.SourceMap.load(sourceMapURL, scriptURL, sourceMapLoaded.bind(this));
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebPermissions.h 47 virtual bool allowScriptFromSource(WebKit::WebFrame*, bool enabledPerSettings, const WebKit::WebURL& scriptURL);
WebPermissions.cpp 60 bool WebPermissions::allowScriptFromSource(WebKit::WebFrame*, bool enabledPerSettings, const WebKit::WebURL& scriptURL)
64 m_delegate->printMessage(std::string("PERMISSION CLIENT: allowScriptFromSource(") + normalizeLayoutTestURL(scriptURL.spec()) + "): " + (allowed ? "true" : "false") + "\n");
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 416 String InspectorDebuggerAgent::scriptURL(JavaScriptCallFrame* frame)
427 String topFrameScriptUrl = scriptURL(topFrame.get());
479 String scriptUrl = scriptURL(topFrame.get());
480 if (!scriptUrl.isEmpty() && m_cachedSkipStackRegExp->match(scriptUrl) != -1) {
    [all...]
InspectorDebuggerAgent.h 188 String scriptURL(JavaScriptCallFrame*);
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.h 137 virtual bool allowScriptFromSource(bool enabledPerSettings, const WebCore::KURL& scriptURL);
FrameLoaderClientImpl.cpp 185 bool FrameLoaderClientImpl::allowScriptFromSource(bool enabledPerSettings, const KURL& scriptURL)
189 return webview->permissionClient()->allowScriptFromSource(m_webFrame, enabledPerSettings, scriptURL);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptLoader.cpp 257 KURL scriptURL = (!elementDocument->isInDocumentWrite() && m_parserInserted) ? elementDocument->url() : KURL();
258 executeScript(ScriptSourceCode(scriptContent(), scriptURL, position));
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 443 milliseconds