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

Unified Diff: third_party/crashpad/crashpad/handler/prune_crash_reports_thread.cc

Issue 1911823002: Convert //third_party from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update crashpad's README.chromium 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: third_party/crashpad/crashpad/handler/prune_crash_reports_thread.cc
diff --git a/third_party/crashpad/crashpad/handler/prune_crash_reports_thread.cc b/third_party/crashpad/crashpad/handler/prune_crash_reports_thread.cc
index e6f3a8b02649ff83559c977d0200b64e62c5e2e6..722275f5685083bd0d6ecd13aad695c2d90c5ca5 100644
--- a/third_party/crashpad/crashpad/handler/prune_crash_reports_thread.cc
+++ b/third_party/crashpad/crashpad/handler/prune_crash_reports_thread.cc
@@ -22,7 +22,7 @@ namespace crashpad {
PruneCrashReportThread::PruneCrashReportThread(
CrashReportDatabase* database,
- scoped_ptr<PruneCondition> condition)
+ std::unique_ptr<PruneCondition> condition)
: thread_(60 * 60 * 24, this),
condition_(std::move(condition)),
database_(database) {}

Powered by Google App Engine
This is Rietveld 408576698