OLD | NEW |
1 // Copyright (c) 2012 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/dhcp_proxy_script_fetcher_win.h" | 5 #include "net/proxy/dhcp_proxy_script_fetcher_win.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "base/perftimer.h" | 12 #include "base/perftimer.h" |
13 #include "base/rand_util.h" | 13 #include "base/rand_util.h" |
14 #include "base/test/test_timeouts.h" | 14 #include "base/test/test_timeouts.h" |
15 #include "base/threading/platform_thread.h" | 15 #include "base/threading/platform_thread.h" |
16 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
17 #include "net/proxy/dhcp_proxy_script_adapter_fetcher_win.h" | 17 #include "net/proxy/dhcp_proxy_script_adapter_fetcher_win.h" |
18 #include "net/url_request/url_request_test_util.h" | 18 #include "net/url_request/url_request_test_util.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 namespace net { | 21 namespace net { |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 } | 635 } |
636 | 636 |
637 // Re-do the first test to make sure the last test that was run did | 637 // Re-do the first test to make sure the last test that was run did |
638 // not leave things in a bad state. | 638 // not leave things in a bad state. |
639 (*test_functions.begin())(&client); | 639 (*test_functions.begin())(&client); |
640 } | 640 } |
641 | 641 |
642 } // namespace | 642 } // namespace |
643 | 643 |
644 } // namespace net | 644 } // namespace net |
OLD | NEW |