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

Side by Side Diff: net/base/host_resolver_impl.cc

Issue 1576021: Increase the default cache time for failed host resolves from 1 second to 1 m... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | « no previous file | no next file » | 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/base/host_resolver_impl.h" 5 #include "net/base/host_resolver_impl.h"
6 #include "net/base/net_log.h" 6 #include "net/base/net_log.h"
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <deque> 9 #include <deque>
10 10
(...skipping 20 matching lines...) Expand all
31 namespace net { 31 namespace net {
32 32
33 namespace { 33 namespace {
34 34
35 HostCache* CreateDefaultCache() { 35 HostCache* CreateDefaultCache() {
36 static const size_t kMaxHostCacheEntries = 100; 36 static const size_t kMaxHostCacheEntries = 100;
37 37
38 HostCache* cache = new HostCache( 38 HostCache* cache = new HostCache(
39 kMaxHostCacheEntries, 39 kMaxHostCacheEntries,
40 base::TimeDelta::FromMinutes(1), 40 base::TimeDelta::FromMinutes(1),
41 base::TimeDelta::FromSeconds(1)); 41 base::TimeDelta::FromMinutes(1));
42 42
43 return cache; 43 return cache;
44 } 44 }
45 45
46 } // anonymous namespace 46 } // anonymous namespace
47 47
48 HostResolver* CreateSystemHostResolver( 48 HostResolver* CreateSystemHostResolver(
49 NetworkChangeNotifier* network_change_notifier) { 49 NetworkChangeNotifier* network_change_notifier) {
50 // Maximum of 50 concurrent threads. 50 // Maximum of 50 concurrent threads.
51 // TODO(eroman): Adjust this, do some A/B experiments. 51 // TODO(eroman): Adjust this, do some A/B experiments.
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 if (r == req) 1184 if (r == req)
1185 return error; 1185 return error;
1186 1186
1187 r->OnComplete(error, AddressList()); 1187 r->OnComplete(error, AddressList());
1188 } 1188 }
1189 1189
1190 return ERR_IO_PENDING; 1190 return ERR_IO_PENDING;
1191 } 1191 }
1192 1192
1193 } // namespace net 1193 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698