Searched refs:m_afterLastActionIndex (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorHistory.cpp88 InspectorHistory::InspectorHistory() : m_afterLastActionIndex(0) { }
95 if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId())
96 m_history[m_afterLastActionIndex - 1]->merge(action);
98 m_history.resize(m_afterLastActionIndex);
100 ++m_afterLastActionIndex;
112 while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark())
113 --m_afterLastActionIndex;
115 while (m_afterLastActionIndex >
[all...]
H A DInspectorHistory.h80 size_t m_afterLastActionIndex; member in class:blink::FINAL

Completed in 72 milliseconds