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

  /external/webkit/Source/WebCore/workers/
Worker.cpp 67 worker->m_scriptLoader = adoptPtr(new WorkerScriptLoader(ResourceRequestBase::TargetIsWorker));
68 worker->m_scriptLoader->loadAsynchronously(context, scriptURL, DenyCrossOriginRequests, worker.get());
131 if (m_scriptLoader->failed())
134 m_contextProxy->startWorkerContext(m_scriptLoader->url(), scriptExecutionContext()->userAgent(m_scriptLoader->url()), m_scriptLoader->script());
135 InspectorInstrumentation::scriptImported(scriptExecutionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
137 m_scriptLoader = 0;
Worker.h 82 OwnPtr<WorkerScriptLoader> m_scriptLoader;
DefaultSharedWorkerRepository.cpp 265 OwnPtr<WorkerScriptLoader> m_scriptLoader;
278 m_scriptLoader = new WorkerScriptLoader(ResourceRequestBase::TargetIsSharedWorker);
279 m_scriptLoader->loadAsynchronously(m_worker->scriptExecutionContext(), url, DenyCrossOriginRequests, this);
292 if (m_scriptLoader->failed())
295 InspectorInstrumentation::scriptImported(m_worker->scriptExecutionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
296 DefaultSharedWorkerRepository::instance().workerScriptLoaded(*m_proxy, m_worker->scriptExecutionContext()->userAgent(m_scriptLoader->url()), m_scriptLoader->script(), m_port.release());
  /external/webkit/Source/WebKit/chromium/src/
SharedWorkerRepository.cpp 73 , m_scriptLoader(ResourceRequestBase::TargetIsSharedWorker)
99 WorkerScriptLoader m_scriptLoader;
137 m_scriptLoader.loadAsynchronously(m_worker->scriptExecutionContext(), m_url, DenyCrossOriginRequests, this);
161 if (m_scriptLoader.failed()) {
165 InspectorInstrumentation::scriptImported(m_worker->scriptExecutionContext(), m_scriptLoader.identifier(), m_scriptLoader.script());
167 m_webWorker->startWorkerContext(m_url, m_name, m_worker->scriptExecutionContext()->userAgent(m_url), m_scriptLoader.script(), m_responseAppCacheID);

Completed in 183 milliseconds