Chromium Code Reviews| Index: components/wifi/fake_wifi_service.h |
| diff --git a/components/wifi/fake_wifi_service.h b/components/wifi/fake_wifi_service.h |
| index bb5c757479571981eb200b574be00ec2043b8dbb..551a8b4787879513abe9848916eae76dbd6ec6ec 100644 |
| --- a/components/wifi/fake_wifi_service.h |
| +++ b/components/wifi/fake_wifi_service.h |
| @@ -34,10 +34,10 @@ class FakeWiFiService : public WiFiService { |
| base::DictionaryValue* properties, |
| std::string* error) override; |
| void SetProperties(const std::string& network_guid, |
| - scoped_ptr<base::DictionaryValue> properties, |
| + std::unique_ptr<base::DictionaryValue> properties, |
|
danakj
2016/04/25 18:32:58
include memory
dcheng
2016/04/25 19:55:06
Same comment about this being mentioned only in an
|
| std::string* error) override; |
| void CreateNetwork(bool shared, |
| - scoped_ptr<base::DictionaryValue> properties, |
| + std::unique_ptr<base::DictionaryValue> properties, |
| std::string* network_guid, |
| std::string* error) override; |
| void GetVisibleNetworks(const std::string& network_type, |