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

  /external/webkit/Source/WebCore/workers/
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 1025 milliseconds