Home
last modified time | relevance | path

Searched refs:m_pendingExceptions (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DExecutionContext.cpp130 if (!m_pendingExceptions) in reportException()
131 m_pendingExceptions = adoptPtr(new Vector<OwnPtr<PendingException> >()); in reportException()
132m_pendingExceptions->append(adoptPtr(new PendingException(errorEvent->messageForConsole(), errorEv… in reportException()
140 if (!m_pendingExceptions) in reportException()
143 for (size_t i = 0; i < m_pendingExceptions->size(); i++) { in reportException()
144 PendingException* e = m_pendingExceptions->at(i).get(); in reportException()
148 m_pendingExceptions.clear(); in reportException()
DExecutionContext.h152 OwnPtr<Vector<OwnPtr<PendingException> > > m_pendingExceptions; variable