| Index: rlz/lib/rlz_value_store.h
|
| diff --git a/rlz/lib/rlz_value_store.h b/rlz/lib/rlz_value_store.h
|
| index e2cc847d7abd7c5e7c2f2b202acbd1965aa6be31..282ce17cd2ea2fb7b9a1c6b0179cc818a9a73155 100644
|
| --- a/rlz/lib/rlz_value_store.h
|
| +++ b/rlz/lib/rlz_value_store.h
|
| @@ -8,10 +8,10 @@
|
| #include <stddef.h>
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| #include "rlz/lib/rlz_enums.h"
|
|
|
| @@ -99,7 +99,7 @@ class ScopedRlzValueStoreLock {
|
| RlzValueStore* GetStore();
|
|
|
| private:
|
| - scoped_ptr<RlzValueStore> store_;
|
| + std::unique_ptr<RlzValueStore> store_;
|
| #if defined(OS_WIN)
|
| LibMutex lock_;
|
| #elif defined(OS_MACOSX)
|
|
|