| Index: chrome/browser/safe_browsing/safe_browsing_service.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_service.cc b/chrome/browser/safe_browsing/safe_browsing_service.cc
|
| index 0a443b2fbe7e6cb04b9e67fc2fcfe0e48a1de167..070a9bb366ffd5e4c8fe237bfcc1ddffc4fbd49e 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_service.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_service.cc
|
| @@ -663,16 +663,16 @@ void SafeBrowsingService::RefreshState() {
|
| #endif
|
| }
|
|
|
| -void SafeBrowsingService::SendDownloadRecoveryReport(
|
| +void SafeBrowsingService::SendSerializedDownloadReport(
|
| const std::string& report) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| BrowserThread::PostTask(
|
| BrowserThread::IO, FROM_HERE,
|
| - base::Bind(&SafeBrowsingService::OnSendDownloadRecoveryReport, this,
|
| + base::Bind(&SafeBrowsingService::OnSendSerializedDownloadReport, this,
|
| report));
|
| }
|
|
|
| -void SafeBrowsingService::OnSendDownloadRecoveryReport(
|
| +void SafeBrowsingService::OnSendSerializedDownloadReport(
|
| const std::string& report) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
| if (ping_manager())
|
|
|