| 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 89995be2c8a723120060a2a615b91d21ecbea308..9609b15bac740609ad01fdd2de318bb5fae7971b 100644
|
| --- a/components/safe_browsing/password_protection/password_protection_service_unittest.cc
|
| +++ b/components/safe_browsing/password_protection/password_protection_service_unittest.cc
|
| @@ -153,7 +153,7 @@ class PasswordProtectionServiceTest : public testing::Test {
|
| .WillRepeatedly(testing::Return(match_whitelist));
|
|
|
| request_ = new PasswordProtectionRequest(
|
| - target_url, GURL(), GURL(),
|
| + target_url, GURL(), GURL(), std::string(),
|
| LoginReputationClientRequest::UNFAMILIAR_LOGIN_PAGE,
|
| password_protection_service_.get(), timeout_in_ms);
|
| request_->Start();
|
| @@ -530,7 +530,7 @@ TEST_F(PasswordProtectionServiceTest, TestTearDownWithPendingRequests) {
|
| .WillRepeatedly(testing::Return(false));
|
| password_protection_service_->StartRequest(
|
| target_url, GURL("http://foo.com/submit"), GURL("http://foo.com/frame"),
|
| - LoginReputationClientRequest::UNFAMILIAR_LOGIN_PAGE);
|
| + std::string(), LoginReputationClientRequest::UNFAMILIAR_LOGIN_PAGE);
|
|
|
| // Destroy password_protection_service_ while there is one request pending.
|
| password_protection_service_.reset();
|
|
|