| Index: sync/internal_api/public/util/proto_value_ptr_unittest.cc
|
| diff --git a/sync/internal_api/public/util/proto_value_ptr_unittest.cc b/sync/internal_api/public/util/proto_value_ptr_unittest.cc
|
| index 142098048e54ee4d58a174113af8754fc50a4315..af0bcf5a0602f498d22785c7f1e14a7df76e7b59 100644
|
| --- a/sync/internal_api/public/util/proto_value_ptr_unittest.cc
|
| +++ b/sync/internal_api/public/util/proto_value_ptr_unittest.cc
|
| @@ -4,10 +4,10 @@
|
|
|
| #include "sync/internal_api/public/util/proto_value_ptr.h"
|
|
|
| +#include <memory>
|
| #include <utility>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace syncer {
|
| @@ -99,7 +99,7 @@ class TestValue {
|
| static int g_parse_count;
|
| static int g_delete_count;
|
|
|
| - scoped_ptr<IntValue> value_;
|
| + std::unique_ptr<IntValue> value_;
|
| bool is_default_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TestValue);
|
|
|