HomeSort by relevance Sort by last modified time
    Searched refs:proxy_servers (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/components/data_reduction_proxy/browser/
data_reduction_proxy_params.cc 89 : proxy_servers(),
320 proxy_info->proxy_servers.first = origin();
322 proxy_info->proxy_servers.second = fallback_origin();
330 proxy_info->proxy_servers.first = fallback_origin();
331 proxy_info->proxy_servers.second = GURL();
338 proxy_info->proxy_servers.first = alt_origin();
341 proxy_info->proxy_servers.second = alt_fallback_origin();
349 proxy_info->proxy_servers.first = alt_fallback_origin();
350 proxy_info->proxy_servers.second = GURL();
358 proxy_info->proxy_servers.first = ssl_origin()
    [all...]
data_reduction_proxy_protocol.cc 65 if (data_reduction_proxy_type_info.proxy_servers.first.is_empty())
71 !data_reduction_proxy_type_info.proxy_servers.second.is_empty(),
76 data_reduction_proxy_type_info.proxy_servers.first.SchemeIsSecure());
100 data_reduction_proxy_type_info.proxy_servers.first, &proxy_server);
107 !data_reduction_proxy_type_info.proxy_servers.second.is_empty(),
117 data_reduction_proxy_type_info.proxy_servers);
data_reduction_proxy_params.h 28 // Contains information about a given proxy server. |proxy_servers| contains
35 std::pair<GURL, GURL> proxy_servers; member in struct:data_reduction_proxy::DataReductionProxyTypeInfo
110 // If true, |proxy_info.proxy_servers.first| will contain the name of the
111 // proxy that was used. |proxy_info.proxy_servers.second| will contain the
122 // proxy. If true, |proxy_info.proxy_servers.first| will contain the name of
123 // the proxy that matches. |proxy_info.proxy_servers.second| will contain the
data_reduction_proxy_params_unittest.cc 717 net::HostPortPair::FromURL(proxy_type_info.proxy_servers.first))) << i;
719 net::HostPortPair::FromURL(proxy_type_info.proxy_servers.second))) << i;
  /external/chromium_org/net/proxy/
proxy_config_unittest.cc 14 const ProxyList& proxy_servers) {
16 EXPECT_TRUE(proxy_servers.IsEmpty());
18 EXPECT_EQ(expectation, proxy_servers.ToPacString());
  /external/chromium_org/chrome/test/chromedriver/
capabilities.cc 216 std::string proxy_servers; local
231 if (!proxy_servers.empty())
232 proxy_servers += ";";
233 proxy_servers += base::StringPrintf(
244 if (proxy_servers.empty() && proxy_bypass_list.empty()) {
249 if (!proxy_servers.empty())
250 capabilities->switches.SetSwitch("proxy-server", proxy_servers);
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api_helpers.cc 369 std::string proxy_servers; local
370 if (!proxy_config.GetProxyServer(&proxy_servers)) {
376 rules.ParseFromString(proxy_servers);

Completed in 889 milliseconds