| Index: components/sessions/core/session_backend.h
|
| diff --git a/components/sessions/core/session_backend.h b/components/sessions/core/session_backend.h
|
| index 780bfd14e02520745d2d2584765ed3b8c77483ee..d53fb8f6547e88b1bfa9b4926d069fa7e83fc13d 100644
|
| --- a/components/sessions/core/session_backend.h
|
| +++ b/components/sessions/core/session_backend.h
|
| @@ -7,11 +7,11 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/task/cancelable_task_tracker.h"
|
| #include "components/sessions/core/base_session_service.h"
|
| #include "components/sessions/core/session_command.h"
|
| @@ -131,7 +131,7 @@ class SESSIONS_EXPORT SessionBackend
|
| bool last_session_valid_;
|
|
|
| // Handle to the target file.
|
| - scoped_ptr<base::File> current_session_file_;
|
| + std::unique_ptr<base::File> current_session_file_;
|
|
|
| // Whether we've inited. Remember, the constructor is run on the
|
| // Main thread, all others on the IO thread, hence lazy initialization.
|
|
|