HomeSort by relevance Sort by last modified time
    Searched full:workercontext (Results 26 - 50 of 83) sorted by null

12 3 4

  /external/webkit/WebCore/bindings/v8/
WorkerContextExecutionProxy.cpp 59 #include "WorkerContext.h"
74 WorkerContextExecutionProxy::WorkerContextExecutionProxy(WorkerContext* workerContext)
75 : m_workerContext(workerContext)
114 WorkerContext* workerContext = V8WorkerContext::toNative(global);
115 return workerContext->script()->proxy();
V8WorkerContextEventListener.cpp 40 #include "WorkerContext.h"
48 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
49 return workerContext->script()->proxy();
ScheduledAction.h 45 class WorkerContext;
64 void execute(WorkerContext*);
V8DOMWrapper.h 98 class WorkerContext;
144 static PassRefPtr<EventListener> getEventListener(WorkerContext* workerContext, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup);
175 static v8::Local<v8::Function> getConstructor(V8ClassIndex::V8WrapperType, WorkerContext*);
V8DOMWrapper.cpp 216 v8::Local<v8::Function> V8DOMWrapper::getConstructor(V8ClassIndex::V8WrapperType type, WorkerContext*)
288 WorkerContext* workerContext = 0;
303 workerContext = V8WorkerContext::toNative(globalPrototype);
315 if (workerContext)
316 function = getConstructor(type, workerContext);
404 if (DedicatedWorkerContext* workerContext = target->toDedicatedWorkerContext())
405 return toV8(workerContext);
512 PassRefPtr<EventListener> V8DOMWrapper::getEventListener(WorkerContext* workerContext, v8::Local<v8::Value> value, bool isAttribute, ListenerLookupType lookup
    [all...]
  /external/webkit/WebCore/bindings/js/
JSDOMGlobalObject.cpp 36 #include "WorkerContext.h"
103 return static_cast<WorkerContext*>(scriptExecutionContext)->script()->workerContextWrapper();
122 return static_cast<WorkerContext*>(scriptExecutionContext)->script()->workerContextWrapper();
JSEventTarget.cpp 130 if (DedicatedWorkerContext* workerContext = target->toDedicatedWorkerContext())
131 return toJSDOMGlobalObject(workerContext, exec);
138 if (SharedWorkerContext* workerContext = target->toSharedWorkerContext())
139 return toJSDOMGlobalObject(workerContext, exec);
WorkerScriptController.cpp 38 #include "WorkerContext.h"
50 WorkerScriptController::WorkerScriptController(WorkerContext* workerContext)
52 , m_workerContext(workerContext)
  /external/webkit/WebCore/bindings/v8/custom/
V8DedicatedWorkerContextCustom.cpp 48 DedicatedWorkerContext* workerContext = V8DedicatedWorkerContext::toNative(args.Holder());
56 workerContext->postMessage(message.release(), &portArray, ec);
V8MessageChannelConstructor.cpp 41 #include "WorkerContext.h"
56 // Get the ScriptExecutionContext (WorkerContext or Document)
V8EventSourceConstructor.cpp 41 #include "WorkerContext.h"
V8XMLHttpRequestConstructor.cpp 38 #include "WorkerContext.h"
  /external/webkit/WebCore/workers/
DedicatedWorkerThread.cpp 57 PassRefPtr<WorkerContext> DedicatedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent)
65 m_workerObjectProxy.reportPendingActivity(workerContext()->hasPendingActivity());
WorkerContext.idl 39 ] WorkerContext {
43 attribute [Replaceable] WorkerContext self;
SharedWorkerContext.idl 40 ] SharedWorkerContext : WorkerContext {
WorkerScriptLoader.cpp 38 #include "WorkerContext.h"
67 WorkerThreadableLoader::loadResourceSynchronously(static_cast<WorkerContext*>(scriptExecutionContext), *request, *this, options);
DedicatedWorkerContext.idl 40 ] DedicatedWorkerContext : WorkerContext {
DedicatedWorkerThread.h 48 virtual PassRefPtr<WorkerContext> createWorkerContext(const KURL& url, const String& userAgent);
SharedWorkerThread.h 45 virtual PassRefPtr<WorkerContext> createWorkerContext(const KURL&, const String&);
DefaultSharedWorkerRepository.cpp 240 WorkerContext* workerContext = static_cast<WorkerContext*>(scriptContext);
242 ASSERT(!workerContext->isClosing());
243 ASSERT(workerContext->isSharedWorkerContext());
244 workerContext->toSharedWorkerContext()->dispatchEvent(createConnectEvent(port));
286 // FIXME: This method is not guaranteed to be invoked if we are loading from WorkerContext (see comment for WorkerScriptLoaderClient::notifyFinished()).
DedicatedWorkerContext.cpp 45 : WorkerContext(url, userAgent, thread)
  /external/webkit/WebKit/chromium/src/
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.
  /external/webkit/WebCore/websockets/
WorkerThreadableWebSocketChannel.cpp 43 #include "WorkerContext.h"
52 WorkerThreadableWebSocketChannel::WorkerThreadableWebSocketChannel(WorkerContext* context, WebSocketChannelClient* client, const String& taskMode, const KURL& url, const String& protocol)
222 WorkerThreadableWebSocketChannel::Bridge::Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerContext> workerContext, const String& taskMode, const KURL& url, const String& protocol)
224 , m_workerContext(workerContext)
  /external/webkit/WebCore/dom/
ScriptExecutionContext.cpp 36 #include "WorkerContext.h"
171 || (isWorkerContext() && currentThread() == static_cast<WorkerContext*>(this)->thread()->threadID()));
182 || (isWorkerContext() && currentThread() == static_cast<WorkerContext*>(this)->thread()->threadID()));
276 return static_cast<WorkerContext*>(this)->script()->globalData();
  /external/webkit/WebCore/notifications/
NotificationCenter.cpp 39 #include "WorkerContext.h"

Completed in 206 milliseconds

12 3 4