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

Side by Side Diff: chrome_frame/test/test_server_test.cc

Issue 4067002: First pass at adding http/backend cache to NetLog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Minor cleanup Created 10 years 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
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 <windows.h> 5 #include <windows.h>
6 #include <wininet.h> 6 #include <wininet.h>
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/scoped_handle_win.h" 10 #include "base/scoped_handle_win.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 net::HttpNetworkLayer::CreateFactory( 72 net::HttpNetworkLayer::CreateFactory(
73 host_resolver_, 73 host_resolver_,
74 NULL /* dnsrr_resolver */, 74 NULL /* dnsrr_resolver */,
75 NULL /* dns_cert_checker */, 75 NULL /* dns_cert_checker */,
76 NULL /* ssl_host_info_factory */, 76 NULL /* ssl_host_info_factory */,
77 proxy_service_, 77 proxy_service_,
78 ssl_config_service_, 78 ssl_config_service_,
79 http_auth_handler_factory_, 79 http_auth_handler_factory_,
80 NULL /* network_delegate */, 80 NULL /* network_delegate */,
81 NULL /* net_log */), 81 NULL /* net_log */),
82 NULL /* net_log */,
82 net::HttpCache::DefaultBackend::InMemory(0)); 83 net::HttpCache::DefaultBackend::InMemory(0));
83 // In-memory cookie store. 84 // In-memory cookie store.
84 cookie_store_ = new net::CookieMonster(NULL, NULL); 85 cookie_store_ = new net::CookieMonster(NULL, NULL);
85 } 86 }
86 87
87 virtual ~URLRequestTestContext() { 88 virtual ~URLRequestTestContext() {
88 delete http_transaction_factory_; 89 delete http_transaction_factory_;
89 delete http_auth_handler_factory_; 90 delete http_auth_handler_factory_;
90 } 91 }
91 }; 92 };
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 EXPECT_EQ(file.accessed(), 1); 199 EXPECT_EQ(file.accessed(), 1);
199 EXPECT_EQ(redir.accessed(), 1); 200 EXPECT_EQ(redir.accessed(), 1);
200 201
201 EXPECT_TRUE(person_task.response().find("Guthrie") != std::string::npos); 202 EXPECT_TRUE(person_task.response().find("Guthrie") != std::string::npos);
202 EXPECT_TRUE(file_task.response().find("function") != std::string::npos); 203 EXPECT_TRUE(file_task.response().find("function") != std::string::npos);
203 EXPECT_TRUE(goog_task.response().find("<title>") != std::string::npos); 204 EXPECT_TRUE(goog_task.response().find("<title>") != std::string::npos);
204 } else { 205 } else {
205 ::TerminateThread(worker, ~0); 206 ::TerminateThread(worker, ~0);
206 } 207 }
207 } 208 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698