m_history 84 Source/core/events/PopStateEvent.cpp visitor->trace(m_history); m_history 53 Source/core/events/PopStateEvent.h History* history() const { return m_history.get(); } m_history 65 Source/core/events/PopStateEvent.h RefPtrWillBeMember<History> m_history; m_history 491 Source/core/frame/DOMWindow.cpp ASSERT(!m_history); m_history 592 Source/core/frame/DOMWindow.cpp m_history = nullptr; m_history 635 Source/core/frame/DOMWindow.cpp if (!m_history) m_history 636 Source/core/frame/DOMWindow.cpp m_history = History::create(m_frame); m_history 637 Source/core/frame/DOMWindow.cpp return *m_history; m_history 1876 Source/core/frame/DOMWindow.cpp visitor->trace(m_history); m_history 353 Source/core/frame/DOMWindow.h mutable RefPtrWillBeMember<History> m_history; m_history 217 Source/core/inspector/DOMEditor.cpp , m_history(adoptPtr(new InspectorHistory())) m_history 218 Source/core/inspector/DOMEditor.cpp , m_domEditor(adoptPtr(new DOMEditor(m_history.get()))) m_history 233 Source/core/inspector/DOMEditor.cpp return m_history->undo(exceptionState); m_history 238 Source/core/inspector/DOMEditor.cpp return m_history->redo(exceptionState); m_history 252 Source/core/inspector/DOMEditor.cpp OwnPtr<InspectorHistory> m_history; m_history 358 Source/core/inspector/DOMEditor.cpp DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { } m_history 364 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new InsertBeforeAction(parentNode, node, anchorNode)), exceptionState); m_history 369 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new RemoveChildAction(parentNode, node)), exceptionState); m_history 374 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new SetAttributeAction(element, AtomicString(name), AtomicString(value))), exceptionState); m_history 379 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new RemoveAttributeAction(element, AtomicString(name))), exceptionState); m_history 385 Source/core/inspector/DOMEditor.cpp bool result = m_history->perform(action, exceptionState); m_history 393 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new ReplaceWholeTextAction(textNode, text)), exceptionState); m_history 398 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new ReplaceChildNodeAction(parentNode, newNode, oldNode)), exceptionState); m_history 403 Source/core/inspector/DOMEditor.cpp return m_history->perform(adoptRef(new SetNodeValueAction(node, value)), exceptionState); m_history 79 Source/core/inspector/DOMEditor.h InspectorHistory* m_history; m_history 249 Source/core/inspector/InspectorDOMAgent.cpp m_history = adoptPtr(new InspectorHistory()); m_history 250 Source/core/inspector/InspectorDOMAgent.cpp m_domEditor = adoptPtr(new DOMEditor(m_history.get())); m_history 261 Source/core/inspector/InspectorDOMAgent.cpp m_history.clear(); m_history 527 Source/core/inspector/InspectorDOMAgent.cpp if (m_history) m_history 528 Source/core/inspector/InspectorDOMAgent.cpp m_history->reset(); m_history 1327 Source/core/inspector/InspectorDOMAgent.cpp m_history->undo(exceptionState); m_history 1334 Source/core/inspector/InspectorDOMAgent.cpp m_history->redo(exceptionState); m_history 1340 Source/core/inspector/InspectorDOMAgent.cpp m_history->markUndoableState(); m_history 192 Source/core/inspector/InspectorDOMAgent.h InspectorHistory* history() { return m_history.get(); } m_history 273 Source/core/inspector/InspectorDOMAgent.h OwnPtr<InspectorHistory> m_history; m_history 91 Source/core/inspector/InspectorHistory.cpp if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId()) m_history 92 Source/core/inspector/InspectorHistory.cpp m_history[m_afterLastActionIndex - 1]->merge(action); m_history 94 Source/core/inspector/InspectorHistory.cpp m_history.resize(m_afterLastActionIndex); m_history 95 Source/core/inspector/InspectorHistory.cpp m_history.append(action); m_history 108 Source/core/inspector/InspectorHistory.cpp while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark()) m_history 112 Source/core/inspector/InspectorHistory.cpp Action* action = m_history[m_afterLastActionIndex - 1].get(); m_history 127 Source/core/inspector/InspectorHistory.cpp while (m_afterLastActionIndex < m_history.size() && m_history[m_afterLastActionIndex]->isUndoableStateMark()) m_history 130 Source/core/inspector/InspectorHistory.cpp while (m_afterLastActionIndex < m_history.size()) { m_history 131 Source/core/inspector/InspectorHistory.cpp Action* action = m_history[m_afterLastActionIndex].get(); m_history 146 Source/core/inspector/InspectorHistory.cpp m_history.clear(); m_history 75 Source/core/inspector/InspectorHistory.h Vector<RefPtr<Action> > m_history;