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

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper_impl.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_impl.cc
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.cc b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.cc
index 70a39a11baf72736d037a5ca1bb7d7357d9fd3fb..80b9848b3e753c9257c3be0efe06d6e9d332f263 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.cc
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.cc
@@ -123,7 +123,7 @@ void BrowsingDataQuotaHelperImpl::GotHostUsage(QuotaInfoMap* quota_info,
const base::Closure& completion,
const std::string& host,
storage::StorageType type,
- int64 usage) {
+ int64_t usage) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
switch (type) {
case storage::kStorageTypeTemporary:
@@ -171,4 +171,4 @@ void BrowsingDataQuotaHelperImpl::RevokeHostQuotaOnIOThread(
void BrowsingDataQuotaHelperImpl::DidRevokeHostQuota(
storage::QuotaStatusCode /*status*/,
- int64 /*quota*/) {}
+ int64_t /*quota*/) {}

Powered by Google App Engine
This is Rietveld 408576698