Index: chromeos/network/proxy/ui_proxy_config.h |
diff --git a/chromeos/network/proxy/ui_proxy_config.h b/chromeos/network/proxy/ui_proxy_config.h |
index 4338a39b67bc7b081b16e9e705c0b63e597a12f1..cf0553690fb2d4055944a455f3f67434cc21206a 100644 |
--- a/chromeos/network/proxy/ui_proxy_config.h |
+++ b/chromeos/network/proxy/ui_proxy_config.h |
@@ -5,6 +5,7 @@ |
#ifndef CHROMEOS_NETWORK_PROXY_UI_PROXY_CONFIG_H_ |
#define CHROMEOS_NETWORK_PROXY_UI_PROXY_CONFIG_H_ |
+#include <memory> |
#include <string> |
#include "chromeos/chromeos_export.h" |
@@ -74,7 +75,7 @@ struct CHROMEOS_EXPORT UIProxyConfig { |
// Converts |this| to Dictionary of ProxyConfigDictionary format (which |
// is the same format used by prefs). |
- base::DictionaryValue* ToPrefProxyConfig() const; |
+ std::unique_ptr<base::DictionaryValue> ToPrefProxyConfig() const; |
// Map |scheme| (one of "http", "https", "ftp" or "socks") to the correct |
// ManualProxy. Returns NULL if scheme is invalid. |