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

  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DedicatedWorkerContextCustom.cpp 48 DedicatedWorkerContext* workerContext = V8DedicatedWorkerContext::toNative(args.Holder());
59 workerContext->postMessage(message.release(), &portArray, ec);
V8WorkerContextCustom.cpp 45 #include "WorkerContext.h"
52 WorkerContext* workerContext = V8WorkerContext::toNative(args.Holder());
62 WorkerContextExecutionProxy* proxy = workerContext->script()->proxy();
69 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
81 timerId = DOMTimer::install(workerContext, action, timeout, singleShot);
90 INC_STATS(L"DOM.WorkerContext.importScripts()");
103 WorkerContext* workerContext = V8WorkerContext::toNative(args.Holder())
    [all...]
  /external/webkit/Source/WebCore/websockets/
ThreadableWebSocketChannel.cpp 42 #include "WorkerContext.h"
60 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
61 WorkerRunLoop& runLoop = workerContext->thread()->runLoop();
64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol);
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptController.h 43 class WorkerContext;
48 WorkerScriptController(WorkerContext*);
52 WorkerContext* workerContext() { return m_workerContext; }
75 WorkerContext* m_workerContext;
V8WorkerContextEventListener.cpp 40 #include "WorkerContext.h"
48 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
49 return workerContext->script()->proxy();
WorkerScriptDebugServer.cpp 40 #include "WorkerContext.h"
48 static WorkerContext* retrieveWorkerContext(v8::Handle<v8::Context> context)
74 void WorkerScriptDebugServer::addListener(ScriptDebugListener* listener, WorkerContext* workerContext)
86 m_listenersMap.set(workerContext, listener);
88 WorkerContextExecutionProxy* proxy = workerContext->script()->proxy();
104 void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener, WorkerContext* workerContext)
106 if (!m_listenersMap.contains(workerContext))
109 if (m_pausedWorkerContext == workerContext)
    [all...]
V8DOMWrapper.cpp 174 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, WorkerContext*)
252 WorkerContext* workerContext = 0;
268 workerContext = V8WorkerContext::toNative(lookupDOMWrapper(V8WorkerContext::GetTemplate(), context->Global()));
280 if (workerContext)
281 function = getConstructor(type, workerContext);
366 if (DedicatedWorkerContext* workerContext = target->toDedicatedWorkerContext())
367 return toV8(workerContext);
  /external/webkit/Source/WebKit/chromium/src/
DatabaseObserver.cpp 45 #include "WorkerContext.h"
61 WorkerContext* workerContext = static_cast<WorkerContext*>(scriptExecutionContext);
62 WorkerLoaderProxy* workerLoaderProxy = &workerContext->thread()->workerLoaderProxy();
LocalFileSystemChromium.cpp 46 #include "WorkerContext.h"
77 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
78 WorkerLoaderProxy* workerLoaderProxy = &workerContext->thread()->workerLoaderProxy();
WebSharedWorkerImpl.cpp 90 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
91 ASSERT(workerContext->isSharedWorkerContext());
92 workerContext->toSharedWorkerContext()->dispatchEvent(createConnectEvent(port));
WebWorkerImpl.cpp 85 DedicatedWorkerContext* workerContext =
92 workerContext->dispatchEvent(MessageEvent::create(
94 thisPtr->confirmMessageFromWorkerObject(workerContext->hasPendingActivity());
138 // For us, it's a signal to start terminating the WorkerContext too.
WebWorkerBase.cpp 49 #include "WorkerContext.h"
222 WorkerContext* workerContext = controller->workerContext();
231 if (runLoop.runInMode(workerContext, mode) == MessageQueueTerminated) {
244 WorkerContext* workerContext = controller->workerContext();
250 RefPtr<WorkerFileSystemCallbacksBridge> bridge = WorkerFileSystemCallbacksBridge::create(this, workerContext, callbacks);
254 if (runLoop.runInMode(workerContext, mode) == MessageQueueTerminated
    [all...]
  /external/webkit/Source/WebCore/workers/
WorkerThread.h 42 class WorkerContext;
71 virtual PassRefPtr<WorkerContext> createWorkerContext(const KURL& url, const String& userAgent) = 0;
76 WorkerContext* workerContext() { return m_workerContext.get(); }
88 RefPtr<WorkerContext> m_workerContext;
WorkerThread.cpp 176 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
178 workerContext->clearScript();
179 workerContext->thread()->runLoop().terminate();
195 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
199 workerContext->stopDatabases(&cleanupSync);
202 workerContext->stopActiveDOMObjects()
    [all...]
WorkerRunLoop.cpp 40 #include "WorkerContext.h"
128 void WorkerRunLoop::run(WorkerContext* context)
138 MessageQueueWaitResult WorkerRunLoop::runInMode(WorkerContext* context, const String& mode)
146 MessageQueueWaitResult WorkerRunLoop::runInMode(WorkerContext* context, const ModePredicate& predicate)
197 WorkerContext* workerContext = static_cast<WorkerContext *>(context);
198 if (!workerContext->isClosing() || m_task->isCleanupTask())
DefaultSharedWorkerRepository.cpp 242 WorkerContext* workerContext = static_cast<WorkerContext*>(scriptContext);
244 ASSERT(!workerContext->isClosing());
245 ASSERT(workerContext->isSharedWorkerContext());
246 workerContext->toSharedWorkerContext()->dispatchEvent(createConnectEvent(port));
288 // FIXME: This method is not guaranteed to be invoked if we are loading from WorkerContext (see comment for WorkerScriptLoaderClient::notifyFinished()).
WorkerContext.cpp 32 #include "WorkerContext.h"
97 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
99 workerContext->thread()->workerReportingProxy().workerContextClosed();
105 WorkerContext::WorkerContext(const KURL& url, const String& userAgent, WorkerThread* thread)
118 WorkerContext::~WorkerContext()
132 ScriptExecutionContext* WorkerContext::scriptExecutionContext() cons
    [all...]

Completed in 302 milliseconds