Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DAsyncCallStackTracker.cpp133 if (m_currentAsyncCallChain) in currentAsyncCallChain()
134 ensureMaxAsyncCallChainDepth(m_currentAsyncCallChain.get(), m_maxAsyncCallStackDepth); in currentAsyncCallChain()
135 return m_currentAsyncCallChain.get(); in currentAsyncCallChain()
169 ASSERT(!m_currentAsyncCallChain); in willFireTimer()
206 ASSERT(!m_currentAsyncCallChain); in willFireAnimationFrame()
410 ASSERT(m_currentAsyncCallChain); in createAsyncCallChain()
411 return m_currentAsyncCallChain; // Propogate async call stack chain. in createAsyncCallChain()
413 …n> chain = adoptRefWillBeNoop(m_currentAsyncCallChain ? new AsyncCallStackTracker::AsyncCallChain(… in createAsyncCallChain()
425 m_currentAsyncCallChain = chain; in setCurrentAsyncCallChain()
428 if (m_currentAsyncCallChain) in setCurrentAsyncCallChain()
[all …]
DAsyncCallStackTracker.h167 RefPtrWillBeMember<AsyncCallChain> m_currentAsyncCallChain; variable