Home
last modified time | relevance | path

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

/external/webkit/WebCore/page/
DPage.cpp132 , m_pendingBeforeUnloadEventCount(0) in Page()
574 return m_pendingBeforeUnloadEventCount; in pendingBeforeUnloadEventCount()
581 ASSERT( (delta + (int)m_pendingBeforeUnloadEventCount) >= 0 ); in changePendingBeforeUnloadEventCount()
583 if (m_pendingBeforeUnloadEventCount == 0) in changePendingBeforeUnloadEventCount()
585 else if ((m_pendingBeforeUnloadEventCount + delta) == 0) in changePendingBeforeUnloadEventCount()
588 m_pendingBeforeUnloadEventCount += delta; in changePendingBeforeUnloadEventCount()
DPage.h244 unsigned m_pendingBeforeUnloadEventCount; variable