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

Side by Side Diff: net/url_request/url_request_throttler_entry_interface.h

Issue 10440119: Introduce a delegate to avoid hardcoding "chrome-extension" in net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review nit and merge to LKGR for commit. Created 8 years, 6 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_
6 #define NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/time.h" 13 #include "base/time.h"
14 #include "net/base/net_export.h" 14 #include "net/base/net_export.h"
15 15
16 namespace net { 16 namespace net {
17 17
18 class URLRequest;
18 class URLRequestThrottlerHeaderInterface; 19 class URLRequestThrottlerHeaderInterface;
19 20
20 // Interface provided on entries of the URL request throttler manager. 21 // Interface provided on entries of the URL request throttler manager.
21 class NET_EXPORT URLRequestThrottlerEntryInterface 22 class NET_EXPORT URLRequestThrottlerEntryInterface
22 : public base::RefCountedThreadSafe<URLRequestThrottlerEntryInterface> { 23 : public base::RefCountedThreadSafe<URLRequestThrottlerEntryInterface> {
23 public: 24 public:
24 URLRequestThrottlerEntryInterface() {} 25 URLRequestThrottlerEntryInterface() {}
25 26
26 // Returns true when we have encountered server errors and are doing 27 // Returns true when we have encountered server errors and are doing
27 // exponential back-off, unless the request has |load_flags| (from 28 // exponential back-off, unless the request has load flags that mean
28 // net/base/load_flags.h) that mean it is likely to be 29 // it is likely to be user-initiated, or the NetworkDelegate returns
29 // user-initiated. 30 // false for |CanThrottleRequest(request)|.
30 // 31 //
31 // URLRequestHttpJob checks this method prior to every request; it 32 // URLRequestHttpJob checks this method prior to every request; it
32 // cancels requests if this method returns true. 33 // cancels requests if this method returns true.
33 virtual bool ShouldRejectRequest(int load_flags) const = 0; 34 virtual bool ShouldRejectRequest(const URLRequest& request) const = 0;
34 35
35 // Calculates a recommended sending time for the next request and reserves it. 36 // Calculates a recommended sending time for the next request and reserves it.
36 // The sending time is not earlier than the current exponential back-off 37 // The sending time is not earlier than the current exponential back-off
37 // release time or |earliest_time|. Moreover, the previous results of 38 // release time or |earliest_time|. Moreover, the previous results of
38 // the method are taken into account, in order to make sure they are spread 39 // the method are taken into account, in order to make sure they are spread
39 // properly over time. 40 // properly over time.
40 // Returns the recommended delay before sending the next request, in 41 // Returns the recommended delay before sending the next request, in
41 // milliseconds. The return value is always positive or 0. 42 // milliseconds. The return value is always positive or 0.
42 // Although it is not mandatory, respecting the value returned by this method 43 // Although it is not mandatory, respecting the value returned by this method
43 // is helpful to avoid traffic overload. 44 // is helpful to avoid traffic overload.
(...skipping 20 matching lines...) Expand all
64 virtual ~URLRequestThrottlerEntryInterface() {} 65 virtual ~URLRequestThrottlerEntryInterface() {}
65 66
66 private: 67 private:
67 friend class base::RefCounted<URLRequestThrottlerEntryInterface>; 68 friend class base::RefCounted<URLRequestThrottlerEntryInterface>;
68 DISALLOW_COPY_AND_ASSIGN(URLRequestThrottlerEntryInterface); 69 DISALLOW_COPY_AND_ASSIGN(URLRequestThrottlerEntryInterface);
69 }; 70 };
70 71
71 } // namespace net 72 } // namespace net
72 73
73 #endif // NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_ 74 #endif // NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_
OLDNEW
« no previous file with comments | « net/url_request/url_request_throttler_entry.cc ('k') | net/url_request/url_request_throttler_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698