summaryrefslogtreecommitdiffstats
path: root/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc')
-rw-r--r--chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
index ebf3162..ff2cf92 100644
--- a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc
@@ -26,6 +26,7 @@
#include "content/test/test_browser_thread.h"
using content::BrowserThread;
+using content::WebContents;
// A SafeBrowingService class that allows us to inject the malicious URLs.
class FakeSafeBrowsingService : public SafeBrowsingService {
@@ -102,9 +103,9 @@ class TestSafeBrowsingServiceFactory : public SafeBrowsingServiceFactory {
class FakeMalwareDetails : public MalwareDetails {
public:
FakeMalwareDetails(SafeBrowsingService* sb_service,
- TabContents* tab_contents,
+ WebContents* web_contents,
const SafeBrowsingService::UnsafeResource& unsafe_resource)
- : MalwareDetails(sb_service, tab_contents, unsafe_resource) { }
+ : MalwareDetails(sb_service, web_contents, unsafe_resource) { }
virtual ~FakeMalwareDetails() {}
@@ -161,9 +162,9 @@ class TestMalwareDetailsFactory : public MalwareDetailsFactory {
virtual MalwareDetails* CreateMalwareDetails(
SafeBrowsingService* sb_service,
- TabContents* tab_contents,
+ WebContents* web_contents,
const SafeBrowsingService::UnsafeResource& unsafe_resource) {
- details_ = new FakeMalwareDetails(sb_service, tab_contents,
+ details_ = new FakeMalwareDetails(sb_service, web_contents,
unsafe_resource);
return details_;
}