Home
last modified time | relevance | path

Searched refs:GetUrlChain (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/chrome/browser/safe_browsing/
Ddownload_protection_service.cc156 url_chain_(item.GetUrlChain()), in DownloadSBClient()
284 url_chain_(item->GetUrlChain()), in CheckClientDownloadRequest()
391 << item_->GetUrlChain().back() << ": success=" in OnURLFetchComplete()
460 if (item.GetUrlChain().empty()) { in IsSupportedDownload()
464 const GURL& final_url = item.GetUrlChain().back(); in IsSupportedDownload()
684 request.set_url(item_->GetUrlChain().back().spec()); in SendRequest()
687 for (size_t i = 0; i < item_->GetUrlChain().size(); ++i) { in SendRequest()
689 resource->set_url(item_->GetUrlChain()[i].spec()); in SendRequest()
690 if (i == item_->GetUrlChain().size() - 1) { in SendRequest()
736 << item_->GetUrlChain().back(); in SendRequest()
[all …]
Ddownload_protection_service_unittest.cc387 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
403 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
426 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
458 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
552 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
596 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
750 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
803 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
891 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
938 EXPECT_CALL(item, GetUrlChain()).WillRepeatedly(ReturnRef(url_chain)); in TEST_F()
[all …]
/external/chromium_org/content/public/test/
Dmock_download_item.h54 MOCK_CONST_METHOD0(GetUrlChain, const std::vector<GURL>&());
/external/chromium_org/content/public/browser/
Ddownload_item.h181 virtual const std::vector<GURL>& GetUrlChain() const = 0;
/external/chromium_org/content/browser/download/
Ddownload_item_impl.h113 virtual const std::vector<GURL>& GetUrlChain() const OVERRIDE;
Ddownload_manager_impl_unittest.cc132 MOCK_CONST_METHOD0(GetUrlChain, const std::vector<GURL>&());
Ddownload_item_impl.cc545 const std::vector<GURL>& DownloadItemImpl::GetUrlChain() const { in GetUrlChain() function in content::DownloadItemImpl
/external/chromium_org/chrome/browser/download/
Ddownload_ui_controller_unittest.cc210 EXPECT_CALL(*item, GetUrlChain()) in CreateMockInProgressDownload()
Ddownload_history.cc129 item->GetUrlChain(), in GetDownloadRow()
Ddownload_history_unittest.cc429 EXPECT_CALL(item(index), GetUrlChain()) in InitItem()
Ddownload_target_determiner_unittest.cc324 ON_CALL(*item, GetUrlChain()) in CreateActiveDownloadItem()