| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <map> | 5 #include <map> |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "net/proxy/proxy_config_service_linux.h" | 9 #include "net/proxy/proxy_config_service_linux.h" |
| 10 | 10 |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 base::Thread io_thread_; | 302 base::Thread io_thread_; |
| 303 | 303 |
| 304 net::ProxyConfigServiceLinux* config_service_; | 304 net::ProxyConfigServiceLinux* config_service_; |
| 305 | 305 |
| 306 // The config obtained by |io_thread_| and read back by the main | 306 // The config obtained by |io_thread_| and read back by the main |
| 307 // thread. | 307 // thread. |
| 308 net::ProxyConfig proxy_config_; | 308 net::ProxyConfig proxy_config_; |
| 309 int get_config_result_; // Return value from GetProxyConfig(). | 309 int get_config_result_; // Return value from GetProxyConfig(). |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 template<> | 312 template <> |
| 313 void RunnableMethodTraits<SynchConfigGetter>::RetainCallee( | 313 struct RunnableMethodTraits<SynchConfigGetter> { |
| 314 SynchConfigGetter* remover) {} | 314 void RetainCallee(SynchConfigGetter*) {} |
| 315 template<> | 315 void ReleaseCallee(SynchConfigGetter*) {} |
| 316 void RunnableMethodTraits<SynchConfigGetter>::ReleaseCallee( | 316 }; |
| 317 SynchConfigGetter* remover) {} | |
| 318 | 317 |
| 319 namespace net { | 318 namespace net { |
| 320 | 319 |
| 321 // This test fixture is only really needed for the KDEConfigParser test case, | 320 // This test fixture is only really needed for the KDEConfigParser test case, |
| 322 // but all the test cases with the same prefix ("ProxyConfigServiceLinuxTest") | 321 // but all the test cases with the same prefix ("ProxyConfigServiceLinuxTest") |
| 323 // must use the same test fixture class (also "ProxyConfigServiceLinuxTest"). | 322 // must use the same test fixture class (also "ProxyConfigServiceLinuxTest"). |
| 324 class ProxyConfigServiceLinuxTest : public PlatformTest { | 323 class ProxyConfigServiceLinuxTest : public PlatformTest { |
| 325 protected: | 324 protected: |
| 326 virtual void SetUp() { | 325 virtual void SetUp() { |
| 327 PlatformTest::SetUp(); | 326 PlatformTest::SetUp(); |
| (...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1204 EXPECT_EQ(tests[i].auto_detect, config.auto_detect); | 1203 EXPECT_EQ(tests[i].auto_detect, config.auto_detect); |
| 1205 EXPECT_EQ(tests[i].pac_url, config.pac_url); | 1204 EXPECT_EQ(tests[i].pac_url, config.pac_url); |
| 1206 EXPECT_EQ(tests[i].proxy_bypass_list, | 1205 EXPECT_EQ(tests[i].proxy_bypass_list, |
| 1207 FlattenProxyBypass(config.proxy_bypass)); | 1206 FlattenProxyBypass(config.proxy_bypass)); |
| 1208 EXPECT_EQ(tests[i].bypass_local_names, config.proxy_bypass_local_names); | 1207 EXPECT_EQ(tests[i].bypass_local_names, config.proxy_bypass_local_names); |
| 1209 EXPECT_EQ(tests[i].proxy_rules, config.proxy_rules); | 1208 EXPECT_EQ(tests[i].proxy_rules, config.proxy_rules); |
| 1210 } | 1209 } |
| 1211 } | 1210 } |
| 1212 | 1211 |
| 1213 } // namespace net | 1212 } // namespace net |
| OLD | NEW |