| Index: base/test/values_test_util.h
|
| diff --git a/base/test/values_test_util.h b/base/test/values_test_util.h
|
| index 86d91c3868f0cca38b93f6381756eb0689c9903c..886c17dec5e3b170ad2a979792588bff25fe1e22 100644
|
| --- a/base/test/values_test_util.h
|
| +++ b/base/test/values_test_util.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef BASE_TEST_VALUES_TEST_UTIL_H_
|
| #define BASE_TEST_VALUES_TEST_UTIL_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string_piece.h"
|
|
|
| namespace base {
|
| @@ -48,7 +48,7 @@ namespace test {
|
| // Parses |json| as JSON, allowing trailing commas, and returns the
|
| // resulting value. If the json fails to parse, causes an EXPECT
|
| // failure and returns the Null Value (but never a NULL pointer).
|
| -scoped_ptr<Value> ParseJson(base::StringPiece json);
|
| +std::unique_ptr<Value> ParseJson(base::StringPiece json);
|
|
|
| } // namespace test
|
| } // namespace base
|
|
|