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

Unified Diff: remoting/host/server_log_entry_host.h

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/security_key/security_key_message.cc ('k') | remoting/host/server_log_entry_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/server_log_entry_host.h
diff --git a/remoting/host/server_log_entry_host.h b/remoting/host/server_log_entry_host.h
index 1fef4c1108c3ea06ac992a3f7cfe7b5fe654f855..e93154aaa4af0ff72b72c8ea1b90ea09204aba29 100644
--- a/remoting/host/server_log_entry_host.h
+++ b/remoting/host/server_log_entry_host.h
@@ -13,11 +13,11 @@ class ServerLogEntry;
// Constructs a log entry for a session state change.
// Currently this is either connection or disconnection.
-scoped_ptr<ServerLogEntry> MakeLogEntryForSessionStateChange(
+std::unique_ptr<ServerLogEntry> MakeLogEntryForSessionStateChange(
bool connected);
// Constructs a log entry for a heartbeat.
-scoped_ptr<ServerLogEntry> MakeLogEntryForHeartbeat();
+std::unique_ptr<ServerLogEntry> MakeLogEntryForHeartbeat();
// Adds fields describing the host to this log entry.
void AddHostFieldsToLogEntry(ServerLogEntry* entry);
« no previous file with comments | « remoting/host/security_key/security_key_message.cc ('k') | remoting/host/server_log_entry_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698