/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorHistory.cpp | 93 if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId()) 94 m_history[m_afterLastActionIndex - 1]->merge(action); 96 m_history.resize(m_afterLastActionIndex); 97 m_history.append(action); 110 while (m_afterLastActionIndex > 0 && m_history[m_afterLastActionIndex - 1]->isUndoableStateMark()) 114 Action* action = m_history[m_afterLastActionIndex - 1].get(); 129 while (m_afterLastActionIndex < m_history.size() && m_history[m_afterLastActionIndex]->isUndoableStateMark()) 132 while (m_afterLastActionIndex < m_history.size()) { 133 Action* action = m_history[m_afterLastActionIndex].get() [all...] |
DOMEditor.cpp | 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; member in class:WebCore::DOMEditor::SetOuterHTMLAction 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) [all...] |
DOMEditor.h | 79 InspectorHistory* m_history; member in class:WebCore::DOMEditor
|
InspectorHistory.h | 76 Vector<OwnPtr<Action> > m_history; member in class:WebCore::InspectorHistory
|
InspectorDOMAgent.h | 188 InspectorHistory* history() { return m_history.get(); } 266 OwnPtr<InspectorHistory> m_history; member in class:WebCore::InspectorDOMAgent
|
InspectorDOMAgent.cpp | 253 m_history = adoptPtr(new InspectorHistory()); 254 m_domEditor = adoptPtr(new DOMEditor(m_history.get())); 265 m_history.clear(); 485 if (m_history) 486 m_history->reset(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
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/loader/ |
FrameLoader.h | 86 HistoryController* history() const { return &m_history; } 307 mutable HistoryController m_history; member in class:WebCore::FrameLoader
|
FrameLoader.cpp | 156 , m_history(frame) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
DOMWindow.cpp | 376 ASSERT(!m_history); 481 m_history = 0; 526 if (!m_history) 527 m_history = History::create(m_frame); 528 return m_history.get(); [all...] |
DOMWindow.h | 398 mutable RefPtr<History> m_history; member in class:WebCore::DOMWindow
|