| Index: chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h
|
| diff --git a/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h b/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h
|
| index d3c2cc06ada99674e07257aed0c32852d2112e06..41e26a2fa95119ee0773e5615437a48b402815ef 100644
|
| --- a/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h
|
| +++ b/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BLACKLIST_LOAD_ANALYZER_H_
|
| #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BLACKLIST_LOAD_ANALYZER_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string16.h"
|
|
|
| namespace safe_browsing {
|
| @@ -24,7 +24,8 @@ bool GetLoadedBlacklistedModules(std::vector<base::string16>* module_names);
|
|
|
| // Callback to pass to the incident reporting service. The incident reporting
|
| // service will decide when to start the analysis.
|
| -void VerifyBlacklistLoadState(scoped_ptr<IncidentReceiver> incident_receiver);
|
| +void VerifyBlacklistLoadState(
|
| + std::unique_ptr<IncidentReceiver> incident_receiver);
|
|
|
| } // namespace safe_browsing
|
|
|
|
|