diff options
author | dilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-26 17:25:25 +0000 |
---|---|---|
committer | dilmah@chromium.org <dilmah@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-26 17:25:25 +0000 |
commit | e7e3803e3935dad91d825df538b3a2de3835d4c6 (patch) | |
tree | 1b701b8cb09249c147dec3df3f38a7c4ff025f19 /net/url_request/url_request_throttler_entry.h | |
parent | 13c4ebf4808f7c20a09f4f64e6831473dffd27a7 (diff) | |
download | chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.zip chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.tar.gz chromium_src-e7e3803e3935dad91d825df538b3a2de3835d4c6.tar.bz2 |
Remove explicit keyword from multi-argument (w/o default values) constructors
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/7477008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94115 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_throttler_entry.h')
-rw-r--r-- | net/url_request/url_request_throttler_entry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/url_request/url_request_throttler_entry.h b/net/url_request/url_request_throttler_entry.h index 75e6aa0..10f1adc 100644 --- a/net/url_request/url_request_throttler_entry.h +++ b/net/url_request/url_request_throttler_entry.h @@ -71,8 +71,8 @@ class NET_API URLRequestThrottlerEntry static const char kExponentialThrottlingDisableValue[]; // The manager object's lifetime must enclose the lifetime of this object. - explicit URLRequestThrottlerEntry(URLRequestThrottlerManager* manager, - const std::string& url_id); + URLRequestThrottlerEntry(URLRequestThrottlerManager* manager, + const std::string& url_id); // The life span of instances created with this constructor is set to // infinite, and the number of initial errors to ignore is set to 0. |