| Index: chrome/browser/chromeos/proxy_config_service_impl.cc
|
| diff --git a/chrome/browser/chromeos/proxy_config_service_impl.cc b/chrome/browser/chromeos/proxy_config_service_impl.cc
|
| index eee5875162e66103420e86b02a89b4626b18d3c3..23e91fe096d751b8b6a4ed8c6939e37f27b3d511 100644
|
| --- a/chrome/browser/chromeos/proxy_config_service_impl.cc
|
| +++ b/chrome/browser/chromeos/proxy_config_service_impl.cc
|
| @@ -363,7 +363,7 @@ bool ProxyConfigServiceImpl::ProxyConfig::SerializeForNetwork(
|
|
|
| // static
|
| void ProxyConfigServiceImpl::ProxyConfig::EncodeAndAppendProxyServer(
|
| - const std::string& scheme,
|
| + const std::string& url_scheme,
|
| const net::ProxyServer& server,
|
| std::string* spec) {
|
| if (!server.is_valid())
|
| @@ -372,8 +372,8 @@ void ProxyConfigServiceImpl::ProxyConfig::EncodeAndAppendProxyServer(
|
| if (!spec->empty())
|
| *spec += ';';
|
|
|
| - if (!scheme.empty()) {
|
| - *spec += scheme;
|
| + if (!url_scheme.empty()) {
|
| + *spec += url_scheme;
|
| *spec += "=";
|
| }
|
| *spec += server.ToURI();
|
|
|