Home | History | Annotate | Download | only in chromium

Lines Matching defs:TestNavigationEntry

41 // TestNavigationEntry
43 PassRefPtr<TestNavigationEntry> TestNavigationEntry::create()
45 return adoptRef(new TestNavigationEntry);
48 PassRefPtr<TestNavigationEntry> TestNavigationEntry::create(
51 return adoptRef(new TestNavigationEntry(pageID, url, title, targetFrame));
54 TestNavigationEntry::TestNavigationEntry()
57 TestNavigationEntry::TestNavigationEntry(
64 TestNavigationEntry::~TestNavigationEntry() {}
66 void TestNavigationEntry::setContentState(const WebHistoryItem& state)
130 void TestNavigationController::loadEntry(TestNavigationEntry* entry)
141 TestNavigationEntry* TestNavigationController::lastCommittedEntry() const
148 TestNavigationEntry* TestNavigationController::activeEntry() const
150 TestNavigationEntry* entry = m_pendingEntry.get();
164 TestNavigationEntry* TestNavigationController::entryAtIndex(int index) const
171 TestNavigationEntry* TestNavigationController::entryWithPageID(int32_t pageID) const
177 void TestNavigationController::didNavigateToEntry(TestNavigationEntry* entry)
192 TestNavigationEntry* existingEntry = (existingEntryIndex != -1) ?
229 void TestNavigationController::insertEntry(TestNavigationEntry* entry)
242 m_entries.append(RefPtr<TestNavigationEntry>(entry));
274 TestNavigationEntry* entry = activeEntry();