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

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper_impl.h

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.h
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
index 3bb9ff13599ee1c3c67bc8241090a20a086b1943..482ab893235bd4e7120cef06446280998411be2b 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
@@ -5,12 +5,15 @@
#ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_QUOTA_HELPER_IMPL_H_
#define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_QUOTA_HELPER_IMPL_H_
+#include <stdint.h>
+
#include <map>
#include <set>
#include <string>
#include <utility>
#include "base/callback_forward.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/browsing_data/browsing_data_quota_helper.h"
@@ -55,14 +58,14 @@ class BrowsingDataQuotaHelperImpl : public BrowsingDataQuotaHelper {
const base::Closure& completion,
const std::string& host,
storage::StorageType type,
- int64 usage);
+ int64_t usage);
// Called when all QuotaManager::GetHostUsage requests are complete.
void OnGetHostsUsageComplete(const FetchResultCallback& callback,
QuotaInfoMap* quota_info);
void RevokeHostQuotaOnIOThread(const std::string& host);
- void DidRevokeHostQuota(storage::QuotaStatusCode status, int64 quota);
+ void DidRevokeHostQuota(storage::QuotaStatusCode status, int64_t quota);
scoped_refptr<storage::QuotaManager> quota_manager_;

Powered by Google App Engine
This is Rietveld 408576698