Home
last modified time | relevance | path

Searched refs:m_executionContext (Results 1 – 25 of 25) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DSQLCallbackWrapper.h47 , m_executionContext(m_callback ? executionContext : 0) in SQLCallbackWrapper()
49 ASSERT(!m_callback || (m_executionContext.get() && m_executionContext->isContextThread())); in SQLCallbackWrapper()
64 ASSERT(!m_executionContext); in clear()
67 if (m_executionContext->isContextThread()) { in clear()
69 m_executionContext.clear(); in clear()
72 context = m_executionContext.release().leakRef(); in clear()
81 ASSERT(!m_callback || m_executionContext->isContextThread()); in unwrap()
82 m_executionContext.clear(); in unwrap()
117 RefPtr<ExecutionContext> m_executionContext; variable
DDatabaseBase.cpp35 : m_executionContext(executionContext) in DatabaseBase()
37 ASSERT(m_executionContext->isContextThread()); in DatabaseBase()
42 return m_executionContext.get(); in executionContext()
47 m_executionContext->addConsoleMessage(StorageMessageSource, ErrorMessageLevel, message); in logErrorMessage()
DDatabase.cpp109 if (!m_executionContext->isContextThread()) { in ~Database()
112 ExecutionContext* executionContext = m_executionContext.get(); in ~Database()
114 executionContext->postTask(DerefContextTask::create(m_executionContext.release())); in ~Database()
135 ASSERT(m_executionContext->isContextThread()); in closeImmediately()
208 m_executionContext->postTask(DeliverPendingCallbackTask::create(transaction)); in scheduleTransactionCallback()
258 if (m_executionContext->isContextThread()) in securityOrigin()
DDatabaseSync.cpp67 ASSERT(m_executionContext->isContextThread()); in ~DatabaseSync()
77 ASSERT(m_executionContext->isContextThread()); in changeVersion()
155 ASSERT(m_executionContext->isContextThread()); in runTransaction()
187 ASSERT(m_executionContext->isContextThread()); in closeImmediately()
DDatabaseBase.h43 RefPtr<ExecutionContext> m_executionContext; variable
DDatabaseManager.cpp237 …database->m_executionContext->postTask(DatabaseCreationCallbackTask::create(database, creationCall… in openDatabase()
/external/chromium_org/third_party/WebKit/Source/core/workers/
DWorkerMessagingProxy.cpp86 : m_executionContext(workerObject->executionContext()) in WorkerMessagingProxy()
87 , m_workerObjectProxy(WorkerObjectProxy::create(m_executionContext.get(), this)) in WorkerMessagingProxy()
97 ASSERT((m_executionContext->isDocument() && isMainThread()) in WorkerMessagingProxy()
98 …|| (m_executionContext->isWorkerGlobalScope() && toWorkerGlobalScope(m_executionContext.get())->th… in WorkerMessagingProxy()
104 ASSERT((m_executionContext->isDocument() && isMainThread()) in ~WorkerMessagingProxy()
105 …|| (m_executionContext->isWorkerGlobalScope() && toWorkerGlobalScope(m_executionContext.get())->th… in ~WorkerMessagingProxy()
111 ASSERT(m_executionContext->isDocument()); in startWorkerGlobalScope()
112 Document* document = toDocument(m_executionContext.get()); in startWorkerGlobalScope()
120 InspectorInstrumentation::didStartWorkerGlobalScope(m_executionContext.get(), this, scriptURL); in startWorkerGlobalScope()
128 … OwnPtr<MessagePortArray> ports = MessagePort::entanglePorts(*m_executionContext.get(), channels); in postMessageToWorkerObject()
[all …]
DWorkerObjectProxy.cpp49m_executionContext->postTask(bind(&WorkerMessagingProxy::postMessageToWorkerObject, m_messagingPro… in postMessageToWorkerObject()
54m_executionContext->postTask(bind(&WorkerMessagingProxy::confirmMessageFromWorkerObject, m_messagi… in confirmMessageFromWorkerObject()
59m_executionContext->postTask(bind(&WorkerMessagingProxy::reportPendingActivity, m_messagingProxy, … in reportPendingActivity()
64m_executionContext->postTask(bind(&WorkerMessagingProxy::reportException, m_messagingProxy, errorM… in reportException()
69m_executionContext->postTask(bind(&WorkerMessagingProxy::reportConsoleMessage, m_messagingProxy, s… in reportConsoleMessage()
74m_executionContext->postTask(bind(&WorkerMessagingProxy::postMessageToPageInspector, m_messagingPr… in postMessageToPageInspector()
84m_executionContext->postTask(bind(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingPr… in workerGlobalScopeClosed()
90m_executionContext->postTask(bind(&WorkerMessagingProxy::workerGlobalScopeDestroyed, m_messagingPr… in workerGlobalScopeDestroyed()
94 : m_executionContext(executionContext) in WorkerObjectProxy()
DWorkerEventQueue.cpp42 : m_executionContext(context) in WorkerEventQueue()
110 m_executionContext->postTask(task.release()); in enqueueEvent()
DWorkerEventQueue.h58 ExecutionContext* m_executionContext; variable
DWorkerObjectProxy.h73 ExecutionContext* m_executionContext; variable
DWorkerMessagingProxy.h89 RefPtr<ExecutionContext> m_executionContext; variable
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DDOMRequestState.h40 : m_executionContext(executionContext) in DOMRequestState()
44 ASSERT(m_executionContext); in DOMRequestState()
49 m_executionContext = 0; in clear()
67 ASSERT(m_executionContext); in context()
68 return toV8Context(m_executionContext, m_world.get()); in context()
76 bool isValid() const { return m_executionContext; } in isValid()
79 ExecutionContext* m_executionContext;
/external/chromium_org/third_party/WebKit/Source/core/html/
DMediaController.h107 void clearExecutionContext() { m_executionContext = 0; } in clearExecutionContext()
126 virtual ExecutionContext* executionContext() const OVERRIDE { return m_executionContext; } in executionContext()
144 ExecutionContext* m_executionContext; variable
DMediaController.cpp60 , m_executionContext(context) in MediaController()
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DFileSystemCallbacks.cpp144 , m_executionContext(context) in FileSystemCallbacks()
152 …RefPtr<DOMFileSystem> fileSystem = DOMFileSystem::create(m_executionContext.get(), name, m_type, r… in didOpenFileSystem()
154 m_executionContext.clear(); in didOpenFileSystem()
169 , m_executionContext(context) in ResolveURICallbacks()
175 …RefPtr<DOMFileSystem> filesystem = DOMFileSystem::create(m_executionContext.get(), name, type, roo… in didResolveURL()
DFileSystemCallbacks.h107 RefPtr<ExecutionContext> m_executionContext; variable
119 RefPtr<ExecutionContext> m_executionContext; variable
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
DSourceBufferList.cpp41 : m_executionContext(context) in SourceBufferList()
90 return m_executionContext; in executionContext()
DWebKitSourceBufferList.cpp41 : m_executionContext(context) in WebKitSourceBufferList()
102 return m_executionContext; in executionContext()
DWebKitSourceBufferList.h69 ExecutionContext* m_executionContext; variable
DSourceBufferList.h70 ExecutionContext* m_executionContext; variable
/external/chromium_org/third_party/WebKit/Source/web/
DServiceWorkerGlobalScopeProxy.cpp81m_executionContext.postTask(bind(&WebEmbeddedWorkerImpl::terminateWorkerContext, &m_embeddedWorker… in workerGlobalScopeClosed()
91 , m_executionContext(executionContext) in ServiceWorkerGlobalScopeProxy()
DServiceWorkerGlobalScopeProxy.h81 WebCore::ExecutionContext& m_executionContext; variable
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
DRTCDataChannel.cpp73 : m_executionContext(context) in RTCDataChannel()
284 return m_executionContext; in executionContext()
292 m_executionContext = 0; in stop()
DRTCDataChannel.h93 ExecutionContext* m_executionContext; variable