| Index: rlz/chromeos/lib/rlz_value_store_chromeos.h
|
| diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.h b/rlz/chromeos/lib/rlz_value_store_chromeos.h
|
| index e4c557f06b79bf3387ae2baa553270c4fe43c1ed..182ba0eb2ac705aec5081c988a62053abe7cc2e2 100644
|
| --- a/rlz/chromeos/lib/rlz_value_store_chromeos.h
|
| +++ b/rlz/chromeos/lib/rlz_value_store_chromeos.h
|
| @@ -8,6 +8,8 @@
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| #include "base/threading/non_thread_safe.h"
|
| @@ -74,7 +76,7 @@ class RlzValueStoreChromeOS : public RlzValueStore,
|
| const base::Value& value);
|
|
|
| // In-memory store with RLZ data.
|
| - scoped_ptr<base::DictionaryValue> rlz_store_;
|
| + std::unique_ptr<base::DictionaryValue> rlz_store_;
|
|
|
| base::FilePath store_path_;
|
|
|
|
|