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

Unified Diff: remoting/host/backoff_timer.cc

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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
« no previous file with comments | « remoting/host/backoff_timer.h ('k') | remoting/host/backoff_timer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/backoff_timer.cc
diff --git a/remoting/host/backoff_timer.cc b/remoting/host/backoff_timer.cc
index 5f2c07d7c8784b8b9b42a1e66c9d4425f3c5e722..1df5559216a71a8724582fe9cee8c05c74f27268 100644
--- a/remoting/host/backoff_timer.cc
+++ b/remoting/host/backoff_timer.cc
@@ -33,7 +33,7 @@ void BackoffTimer::Stop() {
backoff_entry_.reset();
};
-void BackoffTimer::SetTimerForTest(scoped_ptr<base::Timer> timer) {
+void BackoffTimer::SetTimerForTest(std::unique_ptr<base::Timer> timer) {
timer_ = std::move(timer);
}
« no previous file with comments | « remoting/host/backoff_timer.h ('k') | remoting/host/backoff_timer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698