| Index: net/proxy/proxy_config.cc
|
| diff --git a/net/proxy/proxy_config.cc b/net/proxy/proxy_config.cc
|
| index 42589a9a8727cf84437ba520685109dd666a7bfb..06deb0df0715c4ec259ad678c91fe04e6805ba3d 100644
|
| --- a/net/proxy/proxy_config.cc
|
| +++ b/net/proxy/proxy_config.cc
|
| @@ -242,7 +242,7 @@ Value* ProxyConfig::ToValue() const {
|
| for (ProxyBypassRules::RuleList::const_iterator it =
|
| bypass.rules().begin();
|
| it != bypass.rules().end(); ++it) {
|
| - list->Append(Value::CreateStringValue((*it)->ToString()));
|
| + list->Append(base::StringValue::New((*it)->ToString()));
|
| }
|
|
|
| dict->Set("bypass_list", list);
|
|
|