Index: components/safe_browsing/password_protection/password_protection_service_unittest.cc |
diff --git a/components/safe_browsing/password_protection/password_protection_service_unittest.cc b/components/safe_browsing/password_protection/password_protection_service_unittest.cc |
index 3deb72a2720a8fb36af52612dc0dabb1c83de3ee..814989fe9036f4074d25759b3044818e55afc405 100644 |
--- a/components/safe_browsing/password_protection/password_protection_service_unittest.cc |
+++ b/components/safe_browsing/password_protection/password_protection_service_unittest.cc |
@@ -78,6 +78,7 @@ class TestPasswordProtectionService : public PasswordProtectionService { |
void RequestFinished( |
PasswordProtectionRequest* request, |
+ bool already_cached_unused, |
std::unique_ptr<LoginReputationClientResponse> response) override { |
latest_request_ = request; |
latest_response_ = std::move(response); |
@@ -105,6 +106,10 @@ class TestPasswordProtectionService : public PasswordProtectionService { |
return true; |
} |
+ void ShowPhishingInterstitial(const GURL& phishing_url, |
+ const std::string& token, |
+ content::WebContents* web_contents) override {} |
+ |
bool IsHistorySyncEnabled() override { return false; } |
LoginReputationClientResponse* latest_response() { |