summaryrefslogtreecommitdiffstats
path: root/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc')
-rw-r--r--chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc b/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
index 83762de..3bbea4d 100644
--- a/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
@@ -118,12 +118,12 @@ class TestSafeBrowsingDatabase : public SafeBrowsingDatabase {
// otherwise it returns false.
virtual bool ContainsBrowseUrl(const GURL& url,
std::vector<SBPrefix>* prefix_hits,
- std::vector<SBFullHashResult>* full_hits,
+ std::vector<SBFullHashResult>* cached_hits,
base::Time last_update) OVERRIDE {
std::vector<GURL> urls(1, url);
return ContainsUrl(safe_browsing_util::MALWARE,
safe_browsing_util::PHISH,
- urls, prefix_hits, full_hits);
+ urls, prefix_hits, cached_hits);
}
virtual bool ContainsDownloadUrl(
const std::vector<GURL>& urls,