| Index: chrome/browser/safe_browsing/client_side_detection_service.cc
|
| diff --git a/chrome/browser/safe_browsing/client_side_detection_service.cc b/chrome/browser/safe_browsing/client_side_detection_service.cc
|
| index 937b120ddad59eb2373cfc2a48a364f177610105..8360aad560751e57e001ad2f410c7b97396dd923 100644
|
| --- a/chrome/browser/safe_browsing/client_side_detection_service.cc
|
| +++ b/chrome/browser/safe_browsing/client_side_detection_service.cc
|
| @@ -206,14 +206,12 @@ void ClientSideDetectionService::OnURLFetchComplete(
|
| source->GetResponseAsString(&data);
|
|
|
| if (client_phishing_reports_.find(source) != client_phishing_reports_.end()) {
|
| - HandlePhishingVerdict(
|
| - source, source->GetURL(), source->GetStatus(),
|
| - source->GetResponseCode(), source->GetCookies(), data);
|
| + HandlePhishingVerdict(source, source->GetURL(), source->GetStatus(),
|
| + source->GetResponseCode(), data);
|
| } else if (client_malware_reports_.find(source) !=
|
| client_malware_reports_.end()) {
|
| - HandleMalwareVerdict(
|
| - source, source->GetURL(), source->GetStatus(),
|
| - source->GetResponseCode(), source->GetCookies(), data);
|
| + HandleMalwareVerdict(source, source->GetURL(), source->GetStatus(),
|
| + source->GetResponseCode(), data);
|
| } else {
|
| NOTREACHED();
|
| }
|
| @@ -370,7 +368,6 @@ void ClientSideDetectionService::HandlePhishingVerdict(
|
| const GURL& url,
|
| const net::URLRequestStatus& status,
|
| int response_code,
|
| - const net::ResponseCookies& cookies,
|
| const std::string& data) {
|
| ClientPhishingResponse response;
|
| std::unique_ptr<ClientReportInfo> info(client_phishing_reports_[source]);
|
| @@ -397,7 +394,6 @@ void ClientSideDetectionService::HandleMalwareVerdict(
|
| const GURL& url,
|
| const net::URLRequestStatus& status,
|
| int response_code,
|
| - const net::ResponseCookies& cookies,
|
| const std::string& data) {
|
| if (status.is_success()) {
|
| UMA_HISTOGRAM_SPARSE_SLOWLY(
|
|
|