| 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 <utility> | 5 #include <utility> |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
| 12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 13 #include "base/strings/string_util.h" | 13 #include "base/strings/string_util.h" |
| 14 #include "base/test/perf_time_logger.h" | 14 #include "base/test/perf_time_logger.h" |
| 15 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
| 16 #include "net/dns/mock_host_resolver.h" | 16 #include "net/dns/mock_host_resolver.h" |
| 17 #include "net/log/net_log_with_source.h" |
| 17 #include "net/proxy/proxy_info.h" | 18 #include "net/proxy/proxy_info.h" |
| 18 #include "net/proxy/proxy_resolver.h" | 19 #include "net/proxy/proxy_resolver.h" |
| 19 #include "net/proxy/proxy_resolver_factory.h" | 20 #include "net/proxy/proxy_resolver_factory.h" |
| 20 #include "net/proxy/proxy_resolver_v8.h" | 21 #include "net/proxy/proxy_resolver_v8.h" |
| 21 #include "net/test/embedded_test_server/embedded_test_server.h" | 22 #include "net/test/embedded_test_server/embedded_test_server.h" |
| 22 #include "net/test/gtest_util.h" | 23 #include "net/test/gtest_util.h" |
| 23 #include "testing/gmock/include/gmock/gmock.h" | 24 #include "testing/gmock/include/gmock/gmock.h" |
| 24 #include "testing/gtest/include/gtest/gtest.h" | 25 #include "testing/gtest/include/gtest/gtest.h" |
| 25 | 26 |
| 26 #if defined(OS_WIN) | 27 #if defined(OS_WIN) |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 TEST(ProxyResolverPerfTest, ProxyResolverV8) { | 284 TEST(ProxyResolverPerfTest, ProxyResolverV8) { |
| 284 base::MessageLoop message_loop; | 285 base::MessageLoop message_loop; |
| 285 ProxyResolverV8Factory factory; | 286 ProxyResolverV8Factory factory; |
| 286 PacPerfSuiteRunner runner(&factory, "ProxyResolverV8"); | 287 PacPerfSuiteRunner runner(&factory, "ProxyResolverV8"); |
| 287 runner.RunAllTests(); | 288 runner.RunAllTests(); |
| 288 } | 289 } |
| 289 | 290 |
| 290 } // namespace | 291 } // namespace |
| 291 | 292 |
| 292 } // namespace net | 293 } // namespace net |
| OLD | NEW |