| Index: chrome/browser/safe_browsing/safe_browsing_service.h
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_service.h b/chrome/browser/safe_browsing/safe_browsing_service.h
|
| index 79bd618f4bd37db1fd7f18fac588d9c1ad2b5704..9b87dc5f39bac8873f69b17f2c2e5c0add32db49 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_service.h
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_service.h
|
| @@ -175,8 +175,8 @@ class SafeBrowsingService
|
| scoped_ptr<StateSubscription> RegisterStateCallback(
|
| const base::Callback<void(void)>& callback);
|
|
|
| - // Sends serialized download recovery report to backend.
|
| - virtual void SendDownloadRecoveryReport(const std::string& report);
|
| + // Sends serialized download report to backend.
|
| + virtual void SendSerializedDownloadReport(const std::string& report);
|
|
|
| protected:
|
| // Creates the safe browsing service. Need to initialize before using.
|
| @@ -244,7 +244,7 @@ class SafeBrowsingService
|
| // starts or stops the service accordingly.
|
| void RefreshState();
|
|
|
| - void OnSendDownloadRecoveryReport(const std::string& report);
|
| + void OnSendSerializedDownloadReport(const std::string& report);
|
|
|
| // The factory used to instanciate a SafeBrowsingService object.
|
| // Useful for tests, so they can provide their own implementation of
|
|
|