| Index: components/test_runner/tracked_dictionary.h
|
| diff --git a/components/test_runner/tracked_dictionary.h b/components/test_runner/tracked_dictionary.h
|
| index 7b7182da75f108aef7573206e47abf1d03d1a33d..b9b8f5ec2a71dc40d4fd15877237f81d701d8cef 100644
|
| --- a/components/test_runner/tracked_dictionary.h
|
| +++ b/components/test_runner/tracked_dictionary.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef COMPONENTS_TEST_RUNNER_TRACKED_DICTIONARY_H_
|
| #define COMPONENTS_TEST_RUNNER_TRACKED_DICTIONARY_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/values.h"
|
| #include "components/test_runner/test_runner_export.h"
|
|
|
| @@ -40,7 +40,7 @@ class TEST_RUNNER_EXPORT TrackedDictionary {
|
| void ApplyUntrackedChanges(const base::DictionaryValue& new_changes);
|
|
|
| // Sets a value in |current_values| and tracks the change in |changed_values|.
|
| - void Set(const std::string& path, scoped_ptr<base::Value> new_value);
|
| + void Set(const std::string& path, std::unique_ptr<base::Value> new_value);
|
|
|
| // Type-specific setter for convenience.
|
| void SetBoolean(const std::string& path, bool new_value);
|
|
|