| Index: chrome_proxy_resolver.cc
|
| diff --git a/chrome_proxy_resolver.cc b/chrome_proxy_resolver.cc
|
| index eaa213add0f93515eaefed628d6ef32a771c8e4d..66bc5dc4785ec35c99a670c047871f719a6c39c9 100644
|
| --- a/chrome_proxy_resolver.cc
|
| +++ b/chrome_proxy_resolver.cc
|
| @@ -24,7 +24,7 @@ const char kSessionManagerProxySettingsKey[] = "cros.proxy.everywhere";
|
|
|
| bool ChromeProxyResolver::GetProxiesForUrl(
|
| const std::string& url,
|
| - std::vector<std::string>* out_proxies) {
|
| + std::deque<std::string>* out_proxies) {
|
| // First, query dbus for the currently stored settings
|
| DBusGProxy* proxy = DbusProxy();
|
| TEST_AND_RETURN_FALSE(proxy);
|
| @@ -85,7 +85,7 @@ enum ProxyMode {
|
| bool ChromeProxyResolver::GetProxiesForUrlWithSettings(
|
| const string& url,
|
| const string& json_settings,
|
| - std::vector<std::string>* out_proxies) {
|
| + std::deque<std::string>* out_proxies) {
|
| base::JSONReader parser;
|
|
|
| scoped_ptr<Value> root(
|
|
|