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

Unified Diff: components/browsing_data/storage_partition_http_cache_data_remover.h

Issue 1546143002: Switch to standard integer types in components/, 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
« no previous file with comments | « components/browser_watcher/window_hang_monitor_win_unittest.cc ('k') | components/bubble/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/browsing_data/storage_partition_http_cache_data_remover.h
diff --git a/components/browsing_data/storage_partition_http_cache_data_remover.h b/components/browsing_data/storage_partition_http_cache_data_remover.h
index 40143e3b5abf75c40a3ba562c6e1a45e26012de9..7e7256d5cbef0f177fabd1df8350a9a2cb2943b5 100644
--- a/components/browsing_data/storage_partition_http_cache_data_remover.h
+++ b/components/browsing_data/storage_partition_http_cache_data_remover.h
@@ -5,7 +5,10 @@
#ifndef COMPONENTS_BROWSING_DATA_STORAGE_PARTITION_HTTP_CACHE_DATA_REMOVER_H_
#define COMPONENTS_BROWSING_DATA_STORAGE_PARTITION_HTTP_CACHE_DATA_REMOVER_H_
+#include <stdint.h>
+
#include "base/callback.h"
+#include "base/macros.h"
#include "base/sequenced_task_runner_helpers.h"
#include "base/time/time.h"
#include "net/base/completion_callback.h"
@@ -88,7 +91,7 @@ class StoragePartitionHttpCacheDataRemover {
// Stores the cache size computation result before it can be returned
// via a callback. This is either the sum of size of the the two cache
// backends, or an error code if the calculation failed.
- int64 calculation_result_;
+ int64_t calculation_result_;
DISALLOW_COPY_AND_ASSIGN(StoragePartitionHttpCacheDataRemover);
};
« no previous file with comments | « components/browser_watcher/window_hang_monitor_win_unittest.cc ('k') | components/bubble/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698