HomeSort by relevance Sort by last modified time
    Searched refs:redirect_chain (Results 1 - 16 of 16) 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 109 void SetRedirectChain(const std::vector<GURL>& redirect_chain,
111 browse_info_->url_redirects = redirect_chain;
113 browse_info_->host_redirects = redirect_chain;
120 std::vector<GURL> redirect_chain; local
121 redirect_chain.push_back(url);
122 SetRedirectChain(redirect_chain, true);
363 std::vector<GURL> redirect_chain; local
364 redirect_chain.push_back(GURL("http://somerandomwebsite.com/"));
365 redirect_chain.push_back(GURL("http://www.foo.com/"));
366 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 317 void SetRedirectChain(const std::vector<GURL>& redirect_chain) {
318 csd_host_->browse_info_->url_redirects = redirect_chain;
640 std::vector<GURL> redirect_chain; local
641 redirect_chain.push_back(other_phishing_url);
642 SetRedirectChain(redirect_chain);
717 std::vector<GURL> redirect_chain; local
718 redirect_chain.push_back(url);
719 SetRedirectChain(redirect_chain);
756 std::vector<GURL> redirect_chain; local
757 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 259 load_url_params.redirect_chain = params->redirect_chain;
474 nav_params->redirect_chain = params.redirect_chain;
  /external/chromium_org/content/browser/frame_host/
navigator.h 109 // |redirect_chain| contains any redirect URLs (excluding |url|) that happened
114 const std::vector<GURL>& redirect_chain,
navigator_impl.h 62 const std::vector<GURL>& redirect_chain,
navigator_impl.cc 563 // TODO(creis): Pass the redirect_chain into this method to support client
565 std::vector<GURL> redirect_chain; local
567 render_frame_host, url, redirect_chain, referrer, PAGE_TRANSITION_LINK,
575 const std::vector<GURL>& redirect_chain,
599 if (redirect_chain.size() > 0)
600 params.redirect_chain = redirect_chain;
navigation_entry_impl.cc 293 const std::vector<GURL>& redirect_chain) {
294 redirect_chain_ = redirect_chain;
navigation_controller_impl.cc 706 if (params.redirect_chain.size() > 0)
707 entry->SetRedirectChain(params.redirect_chain);
    [all...]
  /external/chromium_org/components/web_contents_delegate_android/
web_contents_delegate_android.cc 117 load_params.redirect_chain = params.redirect_chain;

Completed in 415 milliseconds