Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: chrome/test/plugin/plugin_test.cpp

Issue 3846005: Revert 62918 - net: clean up SSLHostInfo construction.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/service/net/service_url_request_context.cc ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « chrome/service/net/service_url_request_context.cc ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698