| Index: net/url_request/url_request_throttler_entry.cc
|
| diff --git a/net/url_request/url_request_throttler_entry.cc b/net/url_request/url_request_throttler_entry.cc
|
| index 1197f6faf703ae375766f21fda705d2ecfea2348..84a90141cecff1fa93a63146c22aec7304e97758 100644
|
| --- a/net/url_request/url_request_throttler_entry.cc
|
| +++ b/net/url_request/url_request_throttler_entry.cc
|
| @@ -52,10 +52,11 @@ const char URLRequestThrottlerEntry::kExponentialThrottlingDisableValue[] =
|
| "disable";
|
|
|
| // Returns NetLog parameters when a request is rejected by throttling.
|
| -base::Value* NetLogRejectedRequestCallback(const std::string* url_id,
|
| - int num_failures,
|
| - const base::TimeDelta& release_after,
|
| - NetLog::LogLevel /* log_level */) {
|
| +base::Value* NetLogRejectedRequestCallback(
|
| + const std::string* url_id,
|
| + int num_failures,
|
| + const base::TimeDelta& release_after,
|
| + NetLogCaptureMode /* capture_mode */) {
|
| base::DictionaryValue* dict = new base::DictionaryValue();
|
| dict->SetString("url", *url_id);
|
| dict->SetInteger("num_failures", num_failures);
|
|
|