| Index: chrome/browser/browsing_data/browsing_data_cache_storage_helper.h
|
| diff --git a/chrome/browser/browsing_data/browsing_data_cache_storage_helper.h b/chrome/browser/browsing_data/browsing_data_cache_storage_helper.h
|
| index 117ed6f7efc15fc6e5663253dcc3a8016e8837ca..66c91866f412f6575dfccdf7b2c367e6d221d10f 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_cache_storage_helper.h
|
| +++ b/chrome/browser/browsing_data/browsing_data_cache_storage_helper.h
|
| @@ -5,10 +5,14 @@
|
| #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_CACHE_STORAGE_HELPER_H_
|
| #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_CACHE_STORAGE_HELPER_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <list>
|
| #include <set>
|
|
|
| #include "base/callback.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/time/time.h"
|
| #include "content/public/browser/cache_storage_context.h"
|
| @@ -64,14 +68,14 @@ class CannedBrowsingDataCacheStorageHelper
|
| // Contains information about a Cache Storage.
|
| struct PendingCacheStorageUsageInfo {
|
| PendingCacheStorageUsageInfo(const GURL& origin,
|
| - int64 total_size_bytes,
|
| + int64_t total_size_bytes,
|
| const base::Time& last_modified);
|
| ~PendingCacheStorageUsageInfo();
|
|
|
| bool operator<(const PendingCacheStorageUsageInfo& other) const;
|
|
|
| GURL origin;
|
| - int64 total_size_bytes;
|
| + int64_t total_size_bytes;
|
| base::Time last_modified;
|
| };
|
|
|
|
|