| Index: net/url_request/url_request_throttler_entry_interface.h
|
| diff --git a/net/url_request/url_request_throttler_entry_interface.h b/net/url_request/url_request_throttler_entry_interface.h
|
| index f08d352d1f7548f195f77f962f49842304722e1c..44a561247917b5c32a5f67f42750a53f9015c3e9 100644
|
| --- a/net/url_request/url_request_throttler_entry_interface.h
|
| +++ b/net/url_request/url_request_throttler_entry_interface.h
|
| @@ -5,9 +5,11 @@
|
| #ifndef NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_
|
| #define NET_URL_REQUEST_URL_REQUEST_THROTTLER_ENTRY_INTERFACE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/time/time.h"
|
| #include "net/base/net_export.h"
|
| @@ -41,7 +43,7 @@ class NET_EXPORT URLRequestThrottlerEntryInterface
|
| // milliseconds. The return value is always positive or 0.
|
| // Although it is not mandatory, respecting the value returned by this method
|
| // is helpful to avoid traffic overload.
|
| - virtual int64 ReserveSendingTimeForNextRequest(
|
| + virtual int64_t ReserveSendingTimeForNextRequest(
|
| const base::TimeTicks& earliest_time) = 0;
|
|
|
| // Returns the time after which requests are allowed.
|
|
|