OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_scriptLoader
(Results
1 - 4
of
4
) sorted by null
/external/webkit/WebCore/workers/
Worker.cpp
60
m_scriptLoader
= new WorkerScriptLoader();
61
m_scriptLoader
->loadAsynchronously(scriptExecutionContext(), scriptURL, DenyCrossOriginRequests, this);
118
if (
m_scriptLoader
->failed())
121
m_contextProxy->startWorkerContext(
m_scriptLoader
->url(), scriptExecutionContext()->userAgent(
m_scriptLoader
->url()),
m_scriptLoader
->script());
123
m_scriptLoader
= 0;
Worker.h
82
OwnPtr<WorkerScriptLoader>
m_scriptLoader
;
DefaultSharedWorkerRepository.cpp
263
OwnPtr<WorkerScriptLoader>
m_scriptLoader
;
276
m_scriptLoader
= new WorkerScriptLoader();
277
m_scriptLoader
->loadAsynchronously(m_worker->scriptExecutionContext(), url, DenyCrossOriginRequests, this);
290
if (
m_scriptLoader
->failed())
293
DefaultSharedWorkerRepository::instance().workerScriptLoaded(*m_proxy, m_worker->scriptExecutionContext()->userAgent(
m_scriptLoader
->url()),
m_scriptLoader
->script(), m_port.release());
/external/webkit/WebKit/chromium/src/
SharedWorkerRepository.cpp
95
WorkerScriptLoader
m_scriptLoader
;
132
m_scriptLoader
.loadAsynchronously(m_worker->scriptExecutionContext(), m_url, DenyCrossOriginRequests, this);
151
if (
m_scriptLoader
.failed()) {
156
m_webWorker->startWorkerContext(m_url, m_name, m_worker->scriptExecutionContext()->userAgent(m_url),
m_scriptLoader
.script());
Completed in 1531 milliseconds