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

Unified Diff: net/http/http_cache_unittest.cc

Issue 10546071: CapturingNetLog - remove maximum entries constructor argument. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_auth_handler_unittest.cc ('k') | net/http/http_network_transaction_spdy2_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_cache_unittest.cc
===================================================================
--- net/http/http_cache_unittest.cc (revision 141266)
+++ net/http/http_cache_unittest.cc (working copy)
@@ -427,7 +427,7 @@
cache.disk_cache()->set_fail_requests();
- net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingBoundNetLog log;
log.SetLogLevel(net::NetLog::LOG_BASIC);
// Read from the network, and don't use the cache.
@@ -569,7 +569,7 @@
TEST(HttpCache, SimpleGET_LoadOnlyFromCache_Hit) {
MockHttpCache cache;
- net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingBoundNetLog log;
// This prevents a number of write events from being logged.
log.SetLogLevel(net::NetLog::LOG_BASIC);
@@ -702,7 +702,7 @@
MockTransaction transaction(kSimpleGET_Transaction);
transaction.load_flags |= net::LOAD_BYPASS_CACHE;
- net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingBoundNetLog log;
// This prevents a number of write events from being logged.
log.SetLogLevel(net::NetLog::LOG_BASIC);
« no previous file with comments | « net/http/http_auth_handler_unittest.cc ('k') | net/http/http_network_transaction_spdy2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698