diff options
author | avi <avi@chromium.org> | 2015-12-22 16:39:26 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-23 00:40:04 +0000 |
commit | c9cec102fb11a2f3ca3156244446da2d3cdc36b8 (patch) | |
tree | b71268f8bd987d4a93d16e674f6e190462791f69 /extensions/browser/extension_throttle_entry.h | |
parent | 389a09adfd1cfd035c37306cc10db23480930c28 (diff) | |
download | chromium_src-c9cec102fb11a2f3ca3156244446da2d3cdc36b8.zip chromium_src-c9cec102fb11a2f3ca3156244446da2d3cdc36b8.tar.gz chromium_src-c9cec102fb11a2f3ca3156244446da2d3cdc36b8.tar.bz2 |
Switch to standard integer types in extensions/browser/.
BUG=138542
TBR=benwells@chromium.org
Review URL: https://codereview.chromium.org/1549643002
Cr-Commit-Position: refs/heads/master@{#366702}
Diffstat (limited to 'extensions/browser/extension_throttle_entry.h')
-rw-r--r-- | extensions/browser/extension_throttle_entry.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/browser/extension_throttle_entry.h b/extensions/browser/extension_throttle_entry.h index 61a70b2..18194ac 100644 --- a/extensions/browser/extension_throttle_entry.h +++ b/extensions/browser/extension_throttle_entry.h @@ -5,10 +5,12 @@ #ifndef EXTENSIONS_BROWSER_EXTENSION_THROTTLE_ENTRY_H_ #define EXTENSIONS_BROWSER_EXTENSION_THROTTLE_ENTRY_H_ +#include <stdint.h> + #include <queue> #include <string> -#include "base/basictypes.h" +#include "base/macros.h" #include "base/time/time.h" #include "extensions/browser/extension_throttle_entry_interface.h" #include "net/base/backoff_entry.h" @@ -86,7 +88,7 @@ class ExtensionThrottleEntry : public ExtensionThrottleEntryInterface { // Implementation of ExtensionThrottleEntryInterface. bool ShouldRejectRequest(const net::URLRequest& request) const override; - int64 ReserveSendingTimeForNextRequest( + int64_t ReserveSendingTimeForNextRequest( const base::TimeTicks& earliest_time) override; base::TimeTicks GetExponentialBackoffReleaseTime() const override; void UpdateWithResponse(int status_code) override; |