Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(604)

Unified Diff: chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.cc

Issue 1870003002: Convert //chrome/browser/safe_browsing from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.cc
diff --git a/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.cc b/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.cc
index 4891e774add31166d52eddd167f0cb0b78a330f8..1dfdb4490fa130fdbeb291f6518b4b0c53b48c9c 100644
--- a/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.cc
+++ b/chrome/browser/safe_browsing/incident_reporting/blacklist_load_analyzer.cc
@@ -22,8 +22,8 @@ void RegisterBlacklistLoadAnalysis() {
}
#if !defined(OS_WIN)
-void VerifyBlacklistLoadState(scoped_ptr<IncidentReceiver> incident_receiver) {
-}
+void VerifyBlacklistLoadState(
+ std::unique_ptr<IncidentReceiver> incident_receiver) {}
bool GetLoadedBlacklistedModules(std::vector<base::string16>* module_names) {
return false;

Powered by Google App Engine
This is Rietveld 408576698