HomeSort by relevance Sort by last modified time
    Searched refs:m_scriptExecutionContext (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/dom/
ActiveDOMObject.cpp 37 : m_scriptExecutionContext(scriptExecutionContext)
41 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread())
42 || (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>(m_scriptExecutionContext)->thread()->threadID()));
45 m_scriptExecutionContext->createdActiveDOMObject(this, upcastPointer);
50 if (m_scriptExecutionContext) {
52 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread())
53 || (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>(m_scriptExecutionContext)->thread()->threadID()));
56 m_scriptExecutionContext->destroyedActiveDOMObject(this)
    [all...]
MessagePort.cpp 45 , m_scriptExecutionContext(&scriptExecutionContext)
47 m_scriptExecutionContext->createdMessagePort(this);
55 if (m_scriptExecutionContext)
56 m_scriptExecutionContext->destroyedMessagePort(this);
77 ASSERT(m_scriptExecutionContext);
104 ASSERT(m_scriptExecutionContext);
105 m_scriptExecutionContext->destroyedMessagePort(this);
106 m_scriptExecutionContext = 0;
115 ASSERT(m_scriptExecutionContext);
116 m_scriptExecutionContext->processMessagePortMessagesSoon()
    [all...]
ActiveDOMObject.h 40 ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext; }
74 ScriptExecutionContext* m_scriptExecutionContext;
MessagePort.h 124 ScriptExecutionContext* m_scriptExecutionContext;
  /external/webkit/WebCore/notifications/
NotificationCenter.cpp 45 , m_scriptExecutionContext(context)
53 m_scriptExecutionContext->url(),
54 m_scriptExecutionContext->isDocument() ? static_cast<Document*>(m_scriptExecutionContext) : 0);
61 m_notificationPresenter->requestPermission(m_scriptExecutionContext->securityOrigin(), callback);
NotificationCenter.h 71 ScriptExecutionContext* context() const { return m_scriptExecutionContext; }
82 ScriptExecutionContext* m_scriptExecutionContext;
  /external/webkit/WebCore/workers/
WorkerMessagingProxy.cpp 218 : m_scriptExecutionContext(workerObject->scriptExecutionContext())
225 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread())
226 || (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>(m_scriptExecutionContext.get())->thread()->threadID()));
232 ASSERT((m_scriptExecutionContext->isDocument() && isMainThread())
233 || (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast<WorkerContext*>(m_scriptExecutionContext.get())->thread()->threadID()));
245 m_scriptExecutionContext->postTask(MessageWorkerTask::create(message, channels.release(), this));
272 ASSERT(m_scriptExecutionContext->isDocument());
273 m_scriptExecutionContext->postTask(task)
    [all...]
WorkerMessagingProxy.h 94 RefPtr<ScriptExecutionContext> m_scriptExecutionContext;
  /external/webkit/WebCore/storage/
Database.cpp 169 , m_scriptExecutionContext(context)
179 ASSERT(m_scriptExecutionContext.get());
180 m_mainThreadSecurityOrigin = m_scriptExecutionContext->securityOrigin();
201 ASSERT(m_scriptExecutionContext->databaseThread());
226 if (!m_scriptExecutionContext->isContextThread()) {
227 m_scriptExecutionContext->postTask(DerefContextTask::create());
228 m_scriptExecutionContext.release().releaseRef();
234 if (!m_scriptExecutionContext->databaseThread())
242 m_scriptExecutionContext->databaseThread()->scheduleImmediateTask(task.release());
337 if (m_deleted || !m_scriptExecutionContext->databaseThread()
    [all...]
Database.h 93 ScriptExecutionContext* scriptExecutionContext() const { return m_scriptExecutionContext.get(); }
146 RefPtr<ScriptExecutionContext> m_scriptExecutionContext;
  /external/webkit/WebKit/chromium/src/
WebWorkerClientImpl.cpp 116 : m_scriptExecutionContext(worker->scriptExecutionContext())
223 m_scriptExecutionContext->postTask(createCallbackTask(&postMessageToWorkerObjectTask,
230 postMessageToWorkerObjectTask(m_scriptExecutionContext.get(), this,
239 m_scriptExecutionContext->postTask(createCallbackTask(&postExceptionToWorkerObjectTask,
252 m_scriptExecutionContext->reportException(errorMessage, lineNumber, sourceURL);
264 m_scriptExecutionContext->postTask(createCallbackTask(&postConsoleMessageToWorkerObjectTask,
276 m_scriptExecutionContext->addMessage(static_cast<MessageDestination>(destinationId),
289 m_scriptExecutionContext->postTask(createCallbackTask(&confirmMessageFromWorkerObjectTask,
296 m_scriptExecutionContext->postTask(createCallbackTask(&reportPendingActivityTask,
378 thisPtr->m_scriptExecutionContext->reportException(errorMessage
    [all...]
WebWorkerClientImpl.h 142 RefPtr<WebCore::ScriptExecutionContext> m_scriptExecutionContext;

Completed in 215 milliseconds