Index: chrome/browser/safe_browsing/client_side_detection_service.h |
diff --git a/chrome/browser/safe_browsing/client_side_detection_service.h b/chrome/browser/safe_browsing/client_side_detection_service.h |
index 7e048e5b06208d6a15ba3c067c3ca85809b6eaf7..af0a2d999ec72445c6da16975127ea15d8494ff3 100644 |
--- a/chrome/browser/safe_browsing/client_side_detection_service.h |
+++ b/chrome/browser/safe_browsing/client_side_detection_service.h |
@@ -33,7 +33,6 @@ |
#include "chrome/common/net/url_fetcher.h" |
#include "googleurl/src/gurl.h" |
-class SkBitmap; |
class URLRequestContextGetter; |
namespace net { |
@@ -75,17 +74,15 @@ class ClientSideDetectionService : public URLFetcher::Delegate { |
void GetModelFile(OpenModelDoneCallback* callback); |
// Sends a request to the SafeBrowsing servers with the potentially phishing |
- // URL, the client-side phishing score, and a low resolution thumbnail. The |
- // |phishing_url| scheme should be HTTP. This method takes ownership of the |
- // |callback| and calls it once the result has come back from the server or |
- // if an error occurs during the fetch. If an error occurs the phishing |
- // verdict will always be false. The callback is always called after |
- // SendClientReportPhishingRequest() returns and on the same thread as |
- // SendClientReportPhishingRequest() was called. |
+ // URL and the client-side phishing score. The |phishing_url| scheme should |
+ // be HTTP. This method takes ownership of the |callback| and calls it once |
+ // the result has come back from the server or if an error occurs during the |
+ // fetch. If an error occurs the phishing verdict will always be false. The |
+ // callback is always called after SendClientReportPhishingRequest() returns |
+ // and on the same thread as SendClientReportPhishingRequest() was called. |
void SendClientReportPhishingRequest( |
const GURL& phishing_url, |
double score, |
- SkBitmap thumbnail, |
ClientReportPhishingRequestCallback* callback); |
private: |
@@ -142,7 +139,6 @@ class ClientSideDetectionService : public URLFetcher::Delegate { |
void StartClientReportPhishingRequest( |
const GURL& phishing_url, |
double score, |
- SkBitmap thumbnail, |
ClientReportPhishingRequestCallback* callback); |
// Starts getting the model file. |