OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "net/proxy/proxy_list.h" | 5 #include "net/proxy/proxy_list.h" |
6 | 6 |
7 #include "net/proxy/proxy_server.h" | 7 #include "net/proxy/proxy_server.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 | 9 |
10 namespace net { | 10 namespace net { |
11 | 11 |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 list.DeprioritizeBadProxies(retry_info_map); | 138 list.DeprioritizeBadProxies(retry_info_map); |
139 | 139 |
140 EXPECT_EQ("PROXY foopy1:80;PROXY foopy2:80;PROXY foopy3:80", | 140 EXPECT_EQ("PROXY foopy1:80;PROXY foopy2:80;PROXY foopy3:80", |
141 list.ToPacString()); | 141 list.ToPacString()); |
142 } | 142 } |
143 } | 143 } |
144 | 144 |
145 } // namesapce | 145 } // namesapce |
146 | 146 |
147 } // namespace net | 147 } // namespace net |
OLD | NEW |