Searched refs:GetRedirectChain (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/components/sessions/ |
D | serialized_navigation_entry_unittest.cc | 254 ASSERT_EQ(3U, new_navigation_entry->GetRedirectChain().size()); in TEST() 255 EXPECT_EQ(kRedirectURL0, new_navigation_entry->GetRedirectChain()[0]); in TEST() 256 EXPECT_EQ(kRedirectURL1, new_navigation_entry->GetRedirectChain()[1]); in TEST() 257 EXPECT_EQ(kVirtualURL, new_navigation_entry->GetRedirectChain()[2]); in TEST() 287 EXPECT_EQ(navigation_entry->GetRedirectChain()[0].spec(), in TEST() 289 EXPECT_EQ(navigation_entry->GetRedirectChain()[1].spec(), in TEST() 315 EXPECT_EQ(navigation_entry->GetRedirectChain()[0].spec(), in TEST() 317 EXPECT_EQ(navigation_entry->GetRedirectChain()[1].spec(), in TEST()
|
D | serialized_navigation_entry.cc | 60 navigation.redirect_chain_ = entry.GetRedirectChain(); in FromNavigationEntry()
|
/external/chromium_org/content/public/browser/ |
D | navigation_entry.h | 216 virtual const std::vector<GURL>& GetRedirectChain() const = 0;
|
/external/chromium_org/content/browser/frame_host/ |
D | navigator_impl.cc | 140 params->redirects = entry.GetRedirectChain(); in MakeNavigateParams() 192 entry->SetRedirectChain(pending_entry->GetRedirectChain()); in DidStartProvisionalLoad()
|
D | navigation_entry_impl.h | 90 virtual const std::vector<GURL>& GetRedirectChain() const OVERRIDE; in NON_EXPORTED_BASE()
|
D | navigation_entry_impl.cc | 297 const std::vector<GURL>& NavigationEntryImpl::GetRedirectChain() const { in GetRedirectChain() function in content::NavigationEntryImpl
|
D | navigation_controller_impl_unittest.cc | 1371 EXPECT_EQ(1U, pending_entry->GetRedirectChain().size()); in TEST_F() 1372 EXPECT_EQ(GURL("http://foo2"), pending_entry->GetRedirectChain()[0]); in TEST_F() 1379 ASSERT_EQ(1U, committed_entry->GetRedirectChain().size()); in TEST_F() 1380 EXPECT_EQ(GURL("http://foo2"), committed_entry->GetRedirectChain()[0]); in TEST_F()
|
/external/chromium_org/content/browser/web_contents/aura/ |
D | overscroll_navigation_overlay.cc | 31 const std::vector<GURL>& redirect_chain = entry->GetRedirectChain(); in DoesEntryMatchURL()
|
/external/chromium_org/content/renderer/ |
D | render_frame_impl.cc | 223 void GetRedirectChain(WebDataSource* ds, std::vector<GURL>* result) { in GetRedirectChain() function 249 GetRedirectChain(ds, &redirects); in GetOriginalRequestURL() 3299 GetRedirectChain(ds, ¶ms.redirects); in SendDidCommitProvisionalLoad()
|