Home | History | Annotate | Download | only in net

Lines Matching defs:config

26 // Testing proxy config service that allows us to fire notifications at will.
29 TestProxyConfigService(const net::ProxyConfig& config,
31 : config_(config),
34 void SetProxyConfig(const net::ProxyConfig config,
36 config_ = config;
39 OnProxyConfigChanged(config, availability));
52 net::ProxyConfig* config) {
53 *config = config_;
151 MATCHER_P(ProxyConfigMatches, config, "") {
152 net::ProxyConfig reference(config);
327 net::ProxyConfig config;
329 proxy_config_service_->GetLatestProxyConfig(&config));
332 EXPECT_EQ(GURL(kFixedPacUrl), config.pac_url());
334 EXPECT_NE(GURL(kFixedPacUrl), config.pac_url());
335 EXPECT_EQ(GetParam().auto_detect, config.auto_detect());
336 EXPECT_EQ(GetParam().pac_url, config.pac_url());
337 EXPECT_TRUE(GetParam().proxy_rules.Matches(config.proxy_rules()));