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_interface.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_interface.h')
-rw-r--r-- | extensions/browser/extension_throttle_entry_interface.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/browser/extension_throttle_entry_interface.h b/extensions/browser/extension_throttle_entry_interface.h index 99989b8..57d1b02 100644 --- a/extensions/browser/extension_throttle_entry_interface.h +++ b/extensions/browser/extension_throttle_entry_interface.h @@ -5,9 +5,11 @@ #ifndef EXTENSIONS_BROWSER_EXTENSION_THROTTLE_ENTRY_INTERFACE_H_ #define EXTENSIONS_BROWSER_EXTENSION_THROTTLE_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" @@ -42,7 +44,7 @@ class ExtensionThrottleEntryInterface // 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. |