Searched refs:m_history (Results 1 - 12 of 12) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorHistory.cpp95 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);
99 m_history.append(action);
112 while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark())
116 Action* action = m_history[m_afterLastActionIndex - 1].get();
131 while (m_afterLastActionIndex < m_history.size() && m_history[m_afterLastActionIndex]->isUndoableStateMark())
134 while (m_afterLastActionIndex < m_history.size()) {
135 Action* action = m_history[m_afterLastActionInde
[all...]
H A DDOMEditor.cpp215 , m_history(adoptPtr(new InspectorHistory()))
216 , m_domEditor(adoptPtr(new DOMEditor(m_history.get())))
230 return m_history->undo(ec);
235 return m_history->redo(ec);
249 OwnPtr<InspectorHistory> m_history; member in class:WebCore::DOMEditor::SetOuterHTMLAction
353 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { }
359 return m_history->perform(adoptPtr(new InsertBeforeAction(parentNode, node, anchorNode)), ec);
364 return m_history->perform(adoptPtr(new RemoveChildAction(parentNode, node)), ec);
369 return m_history->perform(adoptPtr(new SetAttributeAction(element, name, value)), ec);
374 return m_history
[all...]
H A DInspectorHistory.h82 Vector<OwnPtr<Action> > m_history; member in class:WebCore::InspectorHistory
H A DDOMEditor.h82 InspectorHistory* m_history; member in class:WebCore::DOMEditor
H A DInspectorDOMAgent.cpp245 m_history = adoptPtr(new InspectorHistory());
246 m_domEditor = adoptPtr(new DOMEditor(m_history.get()));
260 m_history.clear();
294 if (m_history)
295 m_history->reset();
1257 m_history->undo(ec);
1264 m_history->redo(ec);
1270 m_history->markUndoableState();
H A DInspectorDOMAgent.h196 InspectorHistory* history() { return m_history.get(); }
270 OwnPtr<InspectorHistory> m_history; member in class:WebCore::InspectorDOMAgent
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DPopStateEvent.cpp43 , m_history(0)
51 , m_history(0)
58 , m_history(history)
H A DPopStateEvent.h53 History* history() const { return m_history.get(); }
64 RefPtr<History> m_history; member in class:WebCore::PopStateEvent
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFrameLoader.h95 HistoryController* history() const { return m_history.get(); }
391 OwnPtr<HistoryController> m_history; member in class:WebCore::FrameLoader
H A DFrameLoader.cpp216 , m_history(adoptPtr(new HistoryController(frame)))
3239 ASSERT(m_history->provisionalItem()->formData());
3240 ASSERT(m_history->provisionalItem() == m_requestedHistoryItem.get());
3243 HistoryItem* item = m_history->provisionalItem();
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DDOMWindow.cpp409 ASSERT(!m_history);
566 m_history = 0;
614 if (!m_history)
615 m_history = History::create(m_frame);
616 return m_history.get();
H A DDOMWindow.h448 mutable RefPtr<History> m_history; member in class:WebCore::DOMWindow

Completed in 226 milliseconds