HomeSort by relevance Sort by last modified time
    Searched refs:redirect_chain (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/content/public/browser/
navigation_controller.cc 53 redirect_chain = other.redirect_chain;
page_navigator.h 46 std::vector<GURL> redirect_chain; member in struct:content::OpenURLParams
navigation_controller.h 122 std::vector<GURL> redirect_chain; member in struct:content::NavigationController::LoadURLParams
  /external/chromium_org/chrome/browser/safe_browsing/
browser_feature_extractor_unittest.cc 110 void SetRedirectChain(const std::vector<GURL>& redirect_chain,
112 browse_info_->url_redirects = redirect_chain;
114 browse_info_->host_redirects = redirect_chain;
121 std::vector<GURL> redirect_chain; local
122 redirect_chain.push_back(url);
123 SetRedirectChain(redirect_chain, true);
368 std::vector<GURL> redirect_chain; local
369 redirect_chain.push_back(GURL("http://somerandomwebsite.com/"));
370 redirect_chain.push_back(GURL("http://www.foo.com/"));
371 SetRedirectChain(redirect_chain, true)
    [all...]
browser_feature_extractor.cc 108 const std::vector<GURL>& redirect_chain,
133 if (redirect_chain.empty()) {
137 if (redirect_chain.back() != entry->GetURL()) {
144 << " Actual:" << redirect_chain.back();
151 for (size_t i = 0; i < redirect_chain.size() - 1; i++) {
152 std::string printable_redirect = redirect_chain[i].spec();
153 if (redirect_chain[i].SchemeIsSecure()) {
client_side_detection_host_unittest.cc 316 void SetRedirectChain(const std::vector<GURL>& redirect_chain) {
317 csd_host_->browse_info_->url_redirects = redirect_chain;
635 std::vector<GURL> redirect_chain; local
636 redirect_chain.push_back(other_phishing_url);
637 SetRedirectChain(redirect_chain);
712 std::vector<GURL> redirect_chain; local
713 redirect_chain.push_back(url);
714 SetRedirectChain(redirect_chain);
751 std::vector<GURL> redirect_chain; local
752 redirect_chain.push_back(url)
    [all...]
  /external/chromium_org/components/sessions/
serialized_navigation_entry_unittest.cc 76 std::vector<GURL> redirect_chain; local
77 redirect_chain.push_back(kRedirectURL0);
78 redirect_chain.push_back(kRedirectURL1);
79 redirect_chain.push_back(kVirtualURL);
80 navigation_entry->SetRedirectChain(redirect_chain);
125 EXPECT_EQ(0U, navigation.redirect_chain().size());
153 ASSERT_EQ(3U, navigation.redirect_chain().size());
154 EXPECT_EQ(kRedirectURL0, navigation.redirect_chain()[0]);
155 EXPECT_EQ(kRedirectURL1, navigation.redirect_chain()[1]);
156 EXPECT_EQ(kVirtualURL, navigation.redirect_chain()[2])
    [all...]
serialized_navigation_entry.h 125 const std::vector<GURL>& redirect_chain() const { return redirect_chain_; } function in class:sessions::SerializedNavigationEntry
  /external/chromium_org/chrome/browser/ui/
browser_navigator.h 73 std::vector<GURL> redirect_chain; member in struct:chrome::NavigateParams
browser_navigator.cc 263 load_url_params.redirect_chain = params->redirect_chain;
478 nav_params->redirect_chain = params.redirect_chain;
  /external/chromium_org/content/browser/frame_host/
navigator.h 99 // |redirect_chain| contains any redirect URLs (excluding |url|) that happened
104 const std::vector<GURL>& redirect_chain,
navigator_impl.cc 564 // TODO(creis): Pass the redirect_chain into this method to support client
566 std::vector<GURL> redirect_chain; local
569 redirect_chain,
581 const std::vector<GURL>& redirect_chain,
606 if (redirect_chain.size() > 0)
607 params.redirect_chain = redirect_chain;
navigator_impl.h 65 const std::vector<GURL>& redirect_chain,
navigation_entry_impl.cc 293 const std::vector<GURL>& redirect_chain) {
294 redirect_chain_ = redirect_chain;
navigation_controller_impl.cc 726 if (params.redirect_chain.size() > 0)
727 entry->SetRedirectChain(params.redirect_chain);
    [all...]
  /external/chromium_org/content/browser/web_contents/aura/
overscroll_navigation_overlay.cc 31 const std::vector<GURL>& redirect_chain = entry->GetRedirectChain(); local
32 for (std::vector<GURL>::const_iterator it = redirect_chain.begin();
33 it != redirect_chain.end();
  /external/chromium_org/components/web_contents_delegate_android/
web_contents_delegate_android.cc 116 load_params.redirect_chain = params.redirect_chain;
  /external/chromium_org/chrome/browser/android/
tab_android.cc 267 load_url_params->redirect_chain = params->redirect_chain;

Completed in 522 milliseconds