Index: components/proximity_auth/remote_status_update.h |
diff --git a/components/proximity_auth/remote_status_update.h b/components/proximity_auth/remote_status_update.h |
index 261ae7ae990934b3efaec2dadcb041123e11d9ee..0d699310b5fe6314f884a17170da41e5944e81a0 100644 |
--- a/components/proximity_auth/remote_status_update.h |
+++ b/components/proximity_auth/remote_status_update.h |
@@ -5,7 +5,7 @@ |
#ifndef COMPONENTS_PROXIMITY_AUTH_REMOTE_STATUS_UPDATE_H |
#define COMPONENTS_PROXIMITY_AUTH_REMOTE_STATUS_UPDATE_H |
-#include "base/memory/scoped_ptr.h" |
+#include <memory> |
namespace base { |
class DictionaryValue; |
@@ -40,7 +40,7 @@ enum TrustAgentState { |
struct RemoteStatusUpdate { |
// Parses a dictionary value into a RemoteStatusUpdate. Returns a null pointer |
// if the serialized dictionary value is not valid. |
- static scoped_ptr<RemoteStatusUpdate> Deserialize( |
+ static std::unique_ptr<RemoteStatusUpdate> Deserialize( |
const base::DictionaryValue& serialized_value); |
UserPresence user_presence; |