HomeSort by relevance Sort by last modified time
    Searched refs:m_executionContext (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerObjectProxy.cpp 52 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->postTask(createCrossThreadTask(&WorkerMessagingProxy::workerThreadTerminated, m_messagingProxy))
    [all...]
WorkerMessagingProxy.cpp 88 : 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.get())
    [all...]
WorkerInspectorProxy.h 44 ExecutionContext* m_executionContext;
WorkerInspectorProxy.cpp 21 , m_executionContext(0)
38 m_executionContext = context;
45 InspectorInstrumentation::workerTerminated(m_executionContext, this);
WorkerEventQueue.h 59 RawPtrWillBeMember<ExecutionContext> m_executionContext;
WorkerEventQueue.cpp 43 : m_executionContext(context)
56 visitor->trace(m_executionContext);
122 m_executionContext->postTask(task.release());
WorkerObjectProxy.h 76 ExecutionContext* m_executionContext;
WorkerMessagingProxy.h 89 RefPtrWillBePersistent<ExecutionContext> m_executionContext;
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamTrackSourcesRequestImpl.cpp 46 , m_executionContext(&context)
56 return m_executionContext->securityOrigin()->toString();
65 m_executionContext->postTask(createCrossThreadTask(&MediaStreamTrackSourcesRequestImpl::performCallback, this));
77 visitor->trace(m_executionContext);
MediaStreamTrackSourcesRequestImpl.h 55 RefPtrWillBeMember<ExecutionContext> m_executionContext;
RTCDataChannel.h 99 ExecutionContext* m_executionContext;
RTCDataChannel.cpp 72 : m_executionContext(context)
288 return m_executionContext;
296 m_executionContext = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchManager.h 31 ExecutionContext* m_executionContext;
FetchManager.cpp 48 ExecutionContext* m_executionContext;
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/
FileSystemCallbacks.cpp 62 , 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.clear()
    [all...]
FileSystemCallbacks.h 86 RefPtrWillBePersistent<ExecutionContext> m_executionContext;
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.h 88 void clearExecutionContext() { m_executionContext = nullptr; }
109 virtual ExecutionContext* executionContext() const OVERRIDE { return m_executionContext; }
129 RawPtrWillBeWeakMember<ExecutionContext> m_executionContext;
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBufferList.cpp 41 : m_executionContext(context)
97 return m_executionContext;
SourceBufferList.h 75 ExecutionContext* m_executionContext;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequestTest.cpp 56 , m_executionContext(adoptRefWillBeNoop(new NullExecutionContext()))
58 m_scope.scriptState()->setExecutionContext(m_executionContext.get());
72 RefPtrWillBePersistent<ExecutionContext> m_executionContext;
IDBTransactionTest.cpp 50 , m_executionContext(Document::create())
52 m_scope.scriptState()->setExecutionContext(m_executionContext.get());
71 RefPtrWillBePersistent<ExecutionContext> m_executionContext;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptState.cpp 114 return m_executionContext;
119 m_executionContext = executionContext;
ScriptState.h 118 ExecutionContext* m_executionContext;
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.cpp 135 : 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->contextURL()
    [all...]
ContentSecurityPolicy.h 155 // 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;

Completed in 516 milliseconds

1 2