| Index: chrome/browser/chromeos/options/wifi_config_view.cc
|
| diff --git a/chrome/browser/chromeos/options/wifi_config_view.cc b/chrome/browser/chromeos/options/wifi_config_view.cc
|
| index 2ce524b226eb724ca7a3606be668b89a23df4bcb..65edd85bbfa7fde4bd8b53c49eec0bb632237bed 100644
|
| --- a/chrome/browser/chromeos/options/wifi_config_view.cc
|
| +++ b/chrome/browser/chromeos/options/wifi_config_view.cc
|
| @@ -6,11 +6,8 @@
|
|
|
| #include <stddef.h>
|
|
|
| -#include <utility>
|
| -
|
| #include "base/bind.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/ptr_util.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chrome/browser/chromeos/enrollment_dialog_view.h"
|
| @@ -892,12 +889,12 @@
|
| properties->SetStringWithoutPathExpansion(
|
| shill::kEapPasswordProperty, GetPassphrase());
|
| }
|
| - auto pem_list = base::MakeUnique<base::ListValue>();
|
| + base::ListValue* pem_list = new base::ListValue;
|
| std::string ca_cert_pem = GetEapServerCaCertPEM();
|
| if (!ca_cert_pem.empty())
|
| pem_list->AppendString(ca_cert_pem);
|
| - properties->SetWithoutPathExpansion(shill::kEapCaCertPemProperty,
|
| - std::move(pem_list));
|
| + properties->SetWithoutPathExpansion(
|
| + shill::kEapCaCertPemProperty, pem_list);
|
| }
|
|
|
| void WifiConfigView::Cancel() {
|
|
|