| Index: chromeos/network/onc/onc_test_utils.cc
|
| diff --git a/chromeos/network/onc/onc_test_utils.cc b/chromeos/network/onc/onc_test_utils.cc
|
| index 7afc0d8984f16f6aded820b39d272b585f91f8e1..6a5c84e0f411493b184e53ad9f4e9f9a8060b6a5 100644
|
| --- a/chromeos/network/onc/onc_test_utils.cc
|
| +++ b/chromeos/network/onc/onc_test_utils.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chromeos/network/onc/onc_test_utils.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| #include "base/json/json_file_value_serializer.h"
|
| @@ -57,7 +59,7 @@ scoped_ptr<base::DictionaryValue> ReadTestDictionary(
|
| CHECK(content != NULL) << "Couldn't json-deserialize file '"
|
| << filename << "': " << error_message;
|
|
|
| - dict = base::DictionaryValue::From(content.Pass());
|
| + dict = base::DictionaryValue::From(std::move(content));
|
| CHECK(dict) << "File '" << filename
|
| << "' does not contain a dictionary as expected, but type "
|
| << content->GetType();
|
|
|