| Index: components/safe_browsing_db/v4_update_protocol_manager.cc
|
| diff --git a/components/safe_browsing_db/v4_update_protocol_manager.cc b/components/safe_browsing_db/v4_update_protocol_manager.cc
|
| index 21305bc59362a9af88e0aeca967942b6c712a9ef..71b4ade0255f1ed5463e88e46b51441365d1021e 100644
|
| --- a/components/safe_browsing_db/v4_update_protocol_manager.cc
|
| +++ b/components/safe_browsing_db/v4_update_protocol_manager.cc
|
| @@ -159,6 +159,8 @@ base::TimeDelta V4UpdateProtocolManager::GetNextUpdateInterval(bool back_off) {
|
| next = V4ProtocolManagerUtil::GetNextBackOffInterval(
|
| &update_error_count_, &update_back_off_mult_);
|
| }
|
| + DVLOG(1) << "V4UpdateProtocolManager::GetNextUpdateInterval: "
|
| + << "next_interval: " << next;
|
| return next;
|
| }
|
|
|
| @@ -311,8 +313,11 @@ void V4UpdateProtocolManager::OnURLFetchComplete(
|
|
|
| GURL V4UpdateProtocolManager::GetUpdateUrl(
|
| const std::string& req_base64) const {
|
| - return V4ProtocolManagerUtil::GetRequestUrl(req_base64, "encodedUpdates",
|
| - config_);
|
| + GURL url = V4ProtocolManagerUtil::GetRequestUrl(req_base64, "encodedUpdates",
|
| + config_);
|
| + DVLOG(1) << "V4UpdateProtocolManager::GetUpdateUrl: "
|
| + << "url: " << url;
|
| + return url;
|
| }
|
|
|
| } // namespace safe_browsing
|
|
|