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

12

/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerObjectProxy.cpp52 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::postMessageToWorkerObject, m_messagingProxy, message, channels));
57 m_executionContext->postTask(task);
62 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::confirmMessageFromWorkerObject, m_messagingProxy, hasPendingActivity));
67 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportPendingActivity, m_messagingProxy, hasPendingActivity));
72 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportException, m_messagingProxy, errorMessage, lineNumber, columnNumber, sourceURL));
77 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportConsoleMessage, m_messagingProxy, consoleMessage->source(), consoleMessage->level(), consoleMessage->message(), consoleMessage->lineNumber(), consoleMessage->url()));
82 if (m_executionContext->isDocument())
83 toDocument(m_executionContext)->postInspectorTask(createCrossThreadTask(&WorkerMessagingProxy::postMessageToPageInspector, m_messagingProxy, message));
93 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingProxy));
99 m_executionContext
[all...]
H A DWorkerMessagingProxy.cpp88 : m_executionContext(workerObject->executionContext())
89 , m_workerObjectProxy(WorkerObjectProxy::create(m_executionContext.get(), this))
99 ASSERT((m_executionContext->isDocument() && isMainThread())
100 || (m_executionContext->isWorkerGlobalScope() && toWorkerGlobalScope(m_executionContext.get())->thread()->isCurrentThread()));
106 ASSERT((m_executionContext->isDocument() && isMainThread())
107 || (m_executionContext->isWorkerGlobalScope() && toWorkerGlobalScope(m_executionContext.get())->thread()->isCurrentThread()));
113 ASSERT(m_executionContext->isDocument());
118 Document* document = toDocument(m_executionContext
[all...]
H A DWorkerInspectorProxy.cpp21 , m_executionContext(0)
38 m_executionContext = context;
45 InspectorInstrumentation::workerTerminated(m_executionContext, this);
H A DWorkerEventQueue.h59 RawPtrWillBeMember<ExecutionContext> m_executionContext; member in class:blink::FINAL
H A DWorkerInspectorProxy.h44 ExecutionContext* m_executionContext; member in class:blink::FINAL
H A DWorkerEventQueue.cpp43 : m_executionContext(context)
56 visitor->trace(m_executionContext);
122 m_executionContext->postTask(task.release());
H A DWorkerObjectProxy.h76 ExecutionContext* m_executionContext; member in class:blink::FINAL
H A DWorkerMessagingProxy.h89 RefPtrWillBePersistent<ExecutionContext> m_executionContext; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamTrackSourcesRequestImpl.cpp46 , m_executionContext(&context)
56 return m_executionContext->securityOrigin()->toString();
65 m_executionContext->postTask(createCrossThreadTask(&MediaStreamTrackSourcesRequestImpl::performCallback, this));
77 visitor->trace(m_executionContext);
H A DMediaStreamTrackSourcesRequestImpl.h55 RefPtrWillBeMember<ExecutionContext> m_executionContext; member in class:blink::FINAL
H A DRTCDataChannel.h99 ExecutionContext* m_executionContext; member in class:blink::FINAL
H A DRTCDataChannel.cpp72 : m_executionContext(context)
288 return m_executionContext;
296 m_executionContext = 0;
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchManager.h31 ExecutionContext* m_executionContext; member in class:blink::FetchManager
H A DFetchManager.cpp48 ExecutionContext* m_executionContext; member in class:blink::FetchManager::Loader
61 : m_executionContext(executionContext)
320 m_loader = ThreadableLoader::create(*m_executionContext, this, request, threadableLoaderOptions, resourceLoaderOptions);
343 : m_executionContext(executionContext)
359 OwnPtr<Loader> ownLoader(adoptPtr(new Loader(m_executionContext, this, resolver.release(), request)));
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileSystemCallbacks.cpp62 , m_executionContext(context)
67 if (m_executionContext)
68 m_asyncOperationId = InspectorInstrumentation::traceAsyncOperationStarting(m_executionContext.get(), "FileSystem");
75 if (m_asyncOperationId && m_executionContext)
76 InspectorInstrumentation::traceAsyncOperationCompleted(m_executionContext.get(), m_asyncOperationId);
87 return !shouldBlockUntilCompletion() && m_executionContext && m_executionContext->activeDOMObjectsAreSuspended();
102 InspectorInstrumentationCookie cookie = InspectorInstrumentation::traceAsyncOperationCompletedCallbackStarting(m_executionContext.get(), m_asyncOperationId);
104 DOMFileSystem::scheduleCallback(m_executionContext.get(), callback.get(), arg);
107 m_executionContext
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaController.h88 void clearExecutionContext() { m_executionContext = nullptr; }
109 virtual ExecutionContext* executionContext() const OVERRIDE { return m_executionContext; }
129 RawPtrWillBeWeakMember<ExecutionContext> m_executionContext; member in class:blink::FINAL
H A DMediaController.cpp61 , m_executionContext(context)
617 visitor->trace(m_executionContext);
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/
H A DSourceBufferList.cpp41 : m_executionContext(context)
97 return m_executionContext;
H A DSourceBufferList.h75 ExecutionContext* m_executionContext; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBRequestTest.cpp56 , m_executionContext(adoptRefWillBeNoop(new NullExecutionContext()))
58 m_scope.scriptState()->setExecutionContext(m_executionContext.get());
72 RefPtrWillBePersistent<ExecutionContext> m_executionContext; member in class:blink::__anon11195::IDBRequestTest
H A DIDBTransactionTest.cpp50 , m_executionContext(Document::create())
52 m_scope.scriptState()->setExecutionContext(m_executionContext.get());
71 RefPtrWillBePersistent<ExecutionContext> m_executionContext; member in class:blink::__anon11196::IDBTransactionTest
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptState.cpp114 return m_executionContext;
119 m_executionContext = executionContext;
H A DScriptState.h118 ExecutionContext* m_executionContext; member in class:blink::ScriptStateForTesting
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DContentSecurityPolicy.cpp135 : m_executionContext(0)
146 m_executionContext = executionContext;
152 ASSERT(m_executionContext);
164 m_executionContext->addConsoleMessage(*iter);
175 m_executionContext->disableEval(m_disableEvalErrorMessage);
184 return m_executionContext->isDocument() ? toDocument(m_executionContext) : 0;
208 if (m_executionContext)
577 return m_executionContext->securityContext().securityOrigin();
582 return m_executionContext
[all...]
H A DContentSecurityPolicy.h155 // Otherwise, the message will be logged to this object's |m_executionContext|.
174 // passed in, the report will be sent via this object's |m_executionContext| (or dropped
208 ExecutionContext* m_executionContext; member in class:blink::ContentSecurityPolicy

Completed in 1005 milliseconds

12