| Index: chromeos/network/network_state.cc
|
| diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc
|
| index 55775188273c64302a5c7be17255a5747ea5ce2e..dff74c4c3968a324842b1ae2bc6d4f602afa471c 100644
|
| --- a/chromeos/network/network_state.cc
|
| +++ b/chromeos/network/network_state.cc
|
| @@ -7,9 +7,11 @@
|
| #include <stddef.h>
|
|
|
| #include <memory>
|
| +#include <utility>
|
|
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/stringprintf.h"
|
| +#include "base/values.h"
|
| #include "chromeos/network/network_profile_handler.h"
|
| #include "chromeos/network/network_type_pattern.h"
|
| #include "chromeos/network/network_util.h"
|
| @@ -259,7 +261,7 @@ void NetworkState::GetStateProperties(base::DictionaryValue* dictionary) const {
|
| shill::kHostProperty, third_party_vpn_provider_extension_id_);
|
| }
|
| dictionary->SetWithoutPathExpansion(shill::kProviderProperty,
|
| - provider_property.release());
|
| + std::move(provider_property));
|
| }
|
|
|
| // Tether properties
|
|
|