Chromium Code Reviews

Side by Side Diff: net/proxy/proxy_script_fetcher_impl_unittest.cc

Issue 6125001: Fixed first pass at adding http/backend cache events to the NetLog. ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « net/http/http_network_session.h ('k') | net/spdy/spdy_test_util.h » ('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 #include "net/proxy/proxy_script_fetcher_impl.h" 5 #include "net/proxy/proxy_script_fetcher_impl.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 29 matching lines...)
40 net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism, 40 net::CreateSystemHostResolver(net::HostResolver::kDefaultParallelism,
41 NULL, NULL); 41 NULL, NULL);
42 cert_verifier_ = new net::CertVerifier; 42 cert_verifier_ = new net::CertVerifier;
43 proxy_service_ = net::ProxyService::CreateFixed(no_proxy); 43 proxy_service_ = net::ProxyService::CreateFixed(no_proxy);
44 ssl_config_service_ = new net::SSLConfigServiceDefaults; 44 ssl_config_service_ = new net::SSLConfigServiceDefaults;
45 45
46 http_transaction_factory_ = new net::HttpCache( 46 http_transaction_factory_ = new net::HttpCache(
47 net::HttpNetworkLayer::CreateFactory(host_resolver_, cert_verifier_, 47 net::HttpNetworkLayer::CreateFactory(host_resolver_, cert_verifier_,
48 NULL, NULL, NULL, proxy_service_, ssl_config_service_, NULL, NULL, 48 NULL, NULL, NULL, proxy_service_, ssl_config_service_, NULL, NULL,
49 NULL), 49 NULL),
50 NULL,
50 net::HttpCache::DefaultBackend::InMemory(0)); 51 net::HttpCache::DefaultBackend::InMemory(0));
51 } 52 }
52 53
53 private: 54 private:
54 ~RequestContext() { 55 ~RequestContext() {
55 delete http_transaction_factory_; 56 delete http_transaction_factory_;
56 delete cert_verifier_; 57 delete cert_verifier_;
57 delete host_resolver_; 58 delete host_resolver_;
58 } 59 }
59 }; 60 };
(...skipping 265 matching lines...)
325 string16 text; 326 string16 text;
326 TestCompletionCallback callback; 327 TestCompletionCallback callback;
327 int result = pac_fetcher.Fetch(url, &text, &callback); 328 int result = pac_fetcher.Fetch(url, &text, &callback);
328 EXPECT_EQ(ERR_IO_PENDING, result); 329 EXPECT_EQ(ERR_IO_PENDING, result);
329 EXPECT_EQ(OK, callback.WaitForResult()); 330 EXPECT_EQ(OK, callback.WaitForResult());
330 EXPECT_EQ(ASCIIToUTF16("This was encoded as UTF-16BE.\n"), text); 331 EXPECT_EQ(ASCIIToUTF16("This was encoded as UTF-16BE.\n"), text);
331 } 332 }
332 } 333 }
333 334
334 } // namespace net 335 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_session.h ('k') | net/spdy/spdy_test_util.h » ('j') | no next file with comments »

Powered by Google App Engine