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

Unified Diff: content/browser/download/rate_estimator.h

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | « content/browser/download/mock_download_file.h ('k') | content/browser/download/rate_estimator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/rate_estimator.h
diff --git a/content/browser/download/rate_estimator.h b/content/browser/download/rate_estimator.h
index 111e8eb8d8b0dd0f0b83e46deae0b2b1012b8025..09e55582387611715d99163e5726f7180096e94e 100644
--- a/content/browser/download/rate_estimator.h
+++ b/content/browser/download/rate_estimator.h
@@ -5,10 +5,12 @@
#ifndef CONTENT_BROWSER_DOWNLOAD_RATE_ESTIMATOR_H_
#define CONTENT_BROWSER_DOWNLOAD_RATE_ESTIMATOR_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/time/time.h"
#include "content/common/content_export.h"
@@ -28,19 +30,19 @@ class CONTENT_EXPORT RateEstimator {
// Increment the counter by |count|. The first variant uses the current time,
// the second variant provides the time that |count| is observed.
- void Increment(uint32 count);
- void Increment(uint32 count, base::TimeTicks now);
+ void Increment(uint32_t count);
+ void Increment(uint32_t count, base::TimeTicks now);
// Get a rate estimate, in terms of counts/second. The first variant uses the
// current time, the second variant provides the time.
- uint64 GetCountPerSecond() const;
- uint64 GetCountPerSecond(base::TimeTicks now) const;
+ uint64_t GetCountPerSecond() const;
+ uint64_t GetCountPerSecond(base::TimeTicks now) const;
private:
void ClearOldBuckets(base::TimeTicks now);
void ResetBuckets(base::TimeTicks now);
- std::vector<uint32> history_;
+ std::vector<uint32_t> history_;
base::TimeDelta bucket_time_;
size_t oldest_index_;
size_t bucket_count_;
« no previous file with comments | « content/browser/download/mock_download_file.h ('k') | content/browser/download/rate_estimator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698