Home | History | Annotate | Download | only in inspector

Lines Matching refs:m_history

216         , m_history(adoptPtr(new InspectorHistory()))
217 , m_domEditor(adoptPtr(new DOMEditor(m_history.get())))
231 return m_history->undo(es);
236 return m_history->redo(es);
250 OwnPtr<InspectorHistory> m_history;
356 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { }
362 return m_history->perform(adoptPtr(new InsertBeforeAction(parentNode, node, anchorNode)), es);
367 return m_history->perform(adoptPtr(new RemoveChildAction(parentNode, node)), es);
372 return m_history->perform(adoptPtr(new SetAttributeAction(element, name, value)), es);
377 return m_history->perform(adoptPtr(new RemoveAttributeAction(element, name)), es);
384 bool result = m_history->perform(action.release(), es);
392 return m_history->perform(adoptPtr(new ReplaceWholeTextAction(textNode, text)), es);
397 return m_history->perform(adoptPtr(new ReplaceChildNodeAction(parentNode, newNode, oldNode)), es);
402 return m_history->perform(adoptPtr(new SetNodeValueAction(node, value)), es);