OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/url_request/url_request_throttler_manager.h" | 5 #include "net/url_request/url_request_throttler_manager.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/metrics/field_trial.h" | 8 #include "base/metrics/field_trial.h" |
9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
10 #include "base/string_util.h" | 10 #include "base/strings/string_util.h" |
11 #include "net/base/net_log.h" | 11 #include "net/base/net_log.h" |
12 #include "net/base/net_util.h" | 12 #include "net/base/net_util.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 const unsigned int URLRequestThrottlerManager::kMaximumNumberOfEntries = 1500; | 16 const unsigned int URLRequestThrottlerManager::kMaximumNumberOfEntries = 1500; |
17 const unsigned int URLRequestThrottlerManager::kRequestsBetweenCollecting = 200; | 17 const unsigned int URLRequestThrottlerManager::kRequestsBetweenCollecting = 200; |
18 | 18 |
19 URLRequestThrottlerManager::URLRequestThrottlerManager() | 19 URLRequestThrottlerManager::URLRequestThrottlerManager() |
20 : requests_since_last_gc_(0), | 20 : requests_since_last_gc_(0), |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 void URLRequestThrottlerManager::OnNetworkChange() { | 194 void URLRequestThrottlerManager::OnNetworkChange() { |
195 // Remove all entries. Any entries that in-flight requests have a reference | 195 // Remove all entries. Any entries that in-flight requests have a reference |
196 // to will live until those requests end, and these entries may be | 196 // to will live until those requests end, and these entries may be |
197 // inconsistent with new entries for the same URLs, but since what we | 197 // inconsistent with new entries for the same URLs, but since what we |
198 // want is a clean slate for the new connection type, this is OK. | 198 // want is a clean slate for the new connection type, this is OK. |
199 url_entries_.clear(); | 199 url_entries_.clear(); |
200 requests_since_last_gc_ = 0; | 200 requests_since_last_gc_ = 0; |
201 } | 201 } |
202 | 202 |
203 } // namespace net | 203 } // namespace net |
OLD | NEW |