HomeSort by relevance Sort by last modified time
    Searched refs:m_history (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.cpp 91 if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId())
92 m_history[m_afterLastActionIndex - 1]->merge(action);
94 m_history.resize(m_afterLastActionIndex);
95 m_history.append(action);
108 while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark())
112 Action* action = m_history[m_afterLastActionIndex - 1].get();
127 while (m_afterLastActionIndex < m_history.size() && m_history[m_afterLastActionIndex]->isUndoableStateMark())
130 while (m_afterLastActionIndex < m_history.size()) {
131 Action* action = m_history[m_afterLastActionIndex].get()
    [all...]
InspectorHistory.h 75 Vector<OwnPtr<Action> > m_history; member in class:WebCore::FINAL
DOMEditor.cpp 216 , m_history(adoptPtr(new InspectorHistory()))
217 , m_domEditor(adoptPtr(new DOMEditor(m_history.get())))
232 return m_history->undo(exceptionState);
237 return m_history->redo(exceptionState);
251 OwnPtr<InspectorHistory> m_history; member in class:WebCore::DOMEditor::SetOuterHTMLAction
357 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { }
363 return m_history->perform(adoptPtr(new InsertBeforeAction(parentNode, node, anchorNode)), exceptionState);
368 return m_history->perform(adoptPtr(new RemoveChildAction(parentNode, node)), exceptionState);
373 return m_history->perform(adoptPtr(new SetAttributeAction(element, name, value)), exceptionState);
378 return m_history->perform(adoptPtr(new RemoveAttributeAction(element, name)), exceptionState)
    [all...]
DOMEditor.h 79 InspectorHistory* m_history; member in class:WebCore::DOMEditor
InspectorDOMAgent.h 192 InspectorHistory* history() { return m_history.get(); }
272 OwnPtr<InspectorHistory> m_history; member in class:WebCore::InspectorDOMAgent
InspectorDOMAgent.cpp 249 m_history = adoptPtr(new InspectorHistory());
250 m_domEditor = adoptPtr(new DOMEditor(m_history.get()));
261 m_history.clear();
499 if (m_history)
500 m_history->reset();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
PopStateEvent.cpp 39 , m_history(0)
46 , m_history(0)
54 , m_history(history)
PopStateEvent.h 52 History* history() const { return m_history.get(); }
62 RefPtr<History> m_history; member in class:WebCore::PopStateEvent
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindow.h 351 mutable RefPtr<History> m_history; member in class:WebCore::DOMWindow
DOMWindow.cpp 489 ASSERT(!m_history);
590 m_history = 0;
635 if (!m_history)
636 m_history = History::create(m_frame);
637 return m_history.get();
    [all...]

Completed in 676 milliseconds