OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Tests for the top plugins to catch regressions in our plugin host code, as | 5 // Tests for the top plugins to catch regressions in our plugin host code, as |
6 // well as in the out of process code. Currently this tests: | 6 // well as in the out of process code. Currently this tests: |
7 // Flash | 7 // Flash |
8 // Real | 8 // Real |
9 // QuickTime | 9 // QuickTime |
10 // Windows Media Player | 10 // Windows Media Player |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 proxy_service_ = net::ProxyService::CreateUsingSystemProxyResolver( | 228 proxy_service_ = net::ProxyService::CreateUsingSystemProxyResolver( |
229 proxy_config_service, 0, net_log_.get()); | 229 proxy_config_service, 0, net_log_.get()); |
230 DCHECK(proxy_service_); | 230 DCHECK(proxy_service_); |
231 | 231 |
232 ssl_config_service_ = new net::SSLConfigServiceDefaults; | 232 ssl_config_service_ = new net::SSLConfigServiceDefaults; |
233 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault( | 233 http_auth_handler_factory_ = net::HttpAuthHandlerFactory::CreateDefault( |
234 host_resolver_); | 234 host_resolver_); |
235 http_transaction_factory_ = new net::HttpCache( | 235 http_transaction_factory_ = new net::HttpCache( |
236 net::HttpNetworkLayer::CreateFactory(host_resolver_, | 236 net::HttpNetworkLayer::CreateFactory(host_resolver_, |
237 NULL /* dnsrr_resolver */, | 237 NULL /* dnsrr_resolver */, |
238 NULL /* ssl_host_info_factory */, | |
239 proxy_service_, | 238 proxy_service_, |
240 ssl_config_service_, | 239 ssl_config_service_, |
241 http_auth_handler_factory_, | 240 http_auth_handler_factory_, |
242 network_delegate_, | 241 network_delegate_, |
243 NULL), | 242 NULL), |
244 net::HttpCache::DefaultBackend::InMemory(0)); | 243 net::HttpCache::DefaultBackend::InMemory(0)); |
245 } | 244 } |
246 | 245 |
247 private: | 246 private: |
248 scoped_ptr<net::NetLog> net_log_; | 247 scoped_ptr<net::NetLog> net_log_; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 TEST_F(PluginInstallerDownloadTest, PluginInstallerDownloadPathTest) { | 297 TEST_F(PluginInstallerDownloadTest, PluginInstallerDownloadPathTest) { |
299 MessageLoop loop(MessageLoop::TYPE_IO); | 298 MessageLoop loop(MessageLoop::TYPE_IO); |
300 Start(); | 299 Start(); |
301 loop.Run(); | 300 loop.Run(); |
302 | 301 |
303 EXPECT_TRUE(success()); | 302 EXPECT_TRUE(success()); |
304 EXPECT_TRUE(initial_download_path().BaseName().value() == | 303 EXPECT_TRUE(initial_download_path().BaseName().value() == |
305 final_download_path().BaseName().value()); | 304 final_download_path().BaseName().value()); |
306 } | 305 } |
307 #endif // defined(OS_WIN) | 306 #endif // defined(OS_WIN) |
OLD | NEW |