OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:URLRequestThrottlerEntry
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/url_request/
url_request_throttler_entry.cc
17
const int
URLRequestThrottlerEntry
::kDefaultSlidingWindowPeriodMs = 2000;
18
const int
URLRequestThrottlerEntry
::kDefaultMaxSendThreshold = 20;
35
const int
URLRequestThrottlerEntry
::kDefaultNumErrorsToIgnore = 4;
36
const int
URLRequestThrottlerEntry
::kDefaultInitialBackoffMs = 700;
37
const double
URLRequestThrottlerEntry
::kDefaultMultiplyFactor = 1.4;
38
const double
URLRequestThrottlerEntry
::kDefaultJitterFactor = 0.4;
39
const int
URLRequestThrottlerEntry
::kDefaultMaximumBackoffMs = 15 * 60 * 1000;
40
const int
URLRequestThrottlerEntry
::kDefaultEntryLifetimeMs = 2 * 60 * 1000;
41
const char
URLRequestThrottlerEntry
::kRetryHeaderName[] = "X-Retry-After";
42
const char
URLRequestThrottlerEntry
::kExponentialThrottlingHeader[]
[
all
...]
url_request_throttler_entry.h
20
//
URLRequestThrottlerEntry
represents an entry of URLRequestThrottlerManager.
31
class
URLRequestThrottlerEntry
: public URLRequestThrottlerEntryInterface {
71
explicit
URLRequestThrottlerEntry
(URLRequestThrottlerManager* manager);
76
URLRequestThrottlerEntry
(URLRequestThrottlerManager* manager,
105
virtual ~
URLRequestThrottlerEntry
();
159
DISALLOW_COPY_AND_ASSIGN(
URLRequestThrottlerEntry
);
Completed in 1287 milliseconds