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

Unified Diff: extensions/browser/extension_throttle_entry.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/extension_system.h ('k') | extensions/browser/extension_throttle_entry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_throttle_entry.h
diff --git a/extensions/browser/extension_throttle_entry.h b/extensions/browser/extension_throttle_entry.h
index 61a70b276e78664624b9044a0ea4a40e8248a1f6..18194ac81ca8fca41277a872aa515ad8ca38be82 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;
« no previous file with comments | « extensions/browser/extension_system.h ('k') | extensions/browser/extension_throttle_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698