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

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
Index: chrome/browser/browsing_data/browsing_data_quota_helper.cc
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper.cc b/chrome/browser/browsing_data/browsing_data_quota_helper.cc
index 8e7ac84cf1a5550acfe63f4ccad03826f8d647fb..8a2ad0ae282aa81c557c8e66a1e957553e65a226 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper.cc
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper.cc
@@ -15,9 +15,9 @@ BrowsingDataQuotaHelper::QuotaInfo::QuotaInfo(const std::string& host)
: host(host) {}
BrowsingDataQuotaHelper::QuotaInfo::QuotaInfo(const std::string& host,
- int64 temporary_usage,
- int64 persistent_usage,
- int64 syncable_usage)
+ int64_t temporary_usage,
+ int64_t persistent_usage,
+ int64_t syncable_usage)
: host(host),
temporary_usage(temporary_usage),
persistent_usage(persistent_usage),

Powered by Google App Engine
This is Rietveld 408576698