HomeSort by relevance Sort by last modified time
    Searched defs:HistoryNode (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/renderer/
history_entry.cc 47 HistoryEntry::HistoryNode* HistoryEntry::HistoryNode::AddChild(
50 children_->push_back(new HistoryNode(entry_, item, frame_id));
54 HistoryEntry::HistoryNode* HistoryEntry::HistoryNode::AddChild() {
58 HistoryEntry::HistoryNode* HistoryEntry::HistoryNode::CloneAndReplace(
66 HistoryNode* new_history_node = new HistoryNode(
79 HistoryNode* child_history_node
    [all...]
history_entry.h 57 class HistoryNode {
59 HistoryNode(HistoryEntry* entry,
62 ~HistoryNode();
64 HistoryNode* AddChild(const blink::WebHistoryItem& item, int64_t frame_id);
65 HistoryNode* AddChild();
66 HistoryNode* CloneAndReplace(HistoryEntry* new_entry,
73 std::vector<HistoryNode*>& children() const { return children_->get(); }
78 scoped_ptr<ScopedVector<HistoryNode> > children_;
91 HistoryNode* GetHistoryNodeForFrame(RenderFrameImpl* frame);
94 HistoryNode* root_history_node() const { return root_.get();
    [all...]

Completed in 47 milliseconds