Chromium Code Reviews| Index: components/wifi/fake_wifi_service.cc |
| diff --git a/components/wifi/fake_wifi_service.cc b/components/wifi/fake_wifi_service.cc |
| index 19e63ee6ef1f81709f8a65847faeba8e7bb67431..bbf3f8e4f0183810ae9993ce7baad40de2213bf8 100644 |
| --- a/components/wifi/fake_wifi_service.cc |
| +++ b/components/wifi/fake_wifi_service.cc |
| @@ -4,6 +4,8 @@ |
| #include "components/wifi/fake_wifi_service.h" |
| +#include <memory> |
|
danakj
2016/04/25 18:32:58
not needed then
dcheng
2016/04/25 19:55:06
See previous.
|
| + |
| #include "base/bind.h" |
| #include "base/message_loop/message_loop.h" |
| #include "components/onc/onc_constants.h" |
| @@ -82,7 +84,7 @@ void FakeWiFiService::GetState(const std::string& network_guid, |
| void FakeWiFiService::SetProperties( |
| const std::string& network_guid, |
| - scoped_ptr<base::DictionaryValue> properties, |
| + std::unique_ptr<base::DictionaryValue> properties, |
| std::string* error) { |
| NetworkList::iterator network_properties = FindNetwork(network_guid); |
| if (network_properties == networks_.end() || |
| @@ -93,7 +95,7 @@ void FakeWiFiService::SetProperties( |
| void FakeWiFiService::CreateNetwork( |
| bool shared, |
| - scoped_ptr<base::DictionaryValue> properties, |
| + std::unique_ptr<base::DictionaryValue> properties, |
| std::string* network_guid, |
| std::string* error) { |
| NetworkProperties network_properties; |
| @@ -114,7 +116,8 @@ void FakeWiFiService::GetVisibleNetworks(const std::string& network_type, |
| ++it) { |
| if (network_type.empty() || network_type == onc::network_type::kAllTypes || |
| it->type == network_type) { |
| - scoped_ptr<base::DictionaryValue> network(it->ToValue(!include_details)); |
| + std::unique_ptr<base::DictionaryValue> network( |
| + it->ToValue(!include_details)); |
| network_list->Append(network.release()); |
| } |
| } |