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

Unified Diff: components/web_cache/common/web_cache_messages.h

Issue 1685883004: Use uint64_t instead of size_t inside the web cache manager code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 10 months 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: components/web_cache/common/web_cache_messages.h
diff --git a/components/web_cache/common/web_cache_messages.h b/components/web_cache/common/web_cache_messages.h
index 58f9c70b825237e9093ff7e5873481702ac0f04f..44f48b6ae0bbcf9eeb372fbe96dc243cb8f95cea 100644
--- a/components/web_cache/common/web_cache_messages.h
+++ b/components/web_cache/common/web_cache_messages.h
@@ -17,9 +17,9 @@
// Tells the renderer to set its maximum cache size to the supplied value.
IPC_MESSAGE_CONTROL3(WebCacheMsg_SetCacheCapacities,
- uint32_t /* min_dead_capacity */,
- uint32_t /* max_dead_capacity */,
- uint32_t /* capacity */)
+ uint64_t /* min_dead_capacity */,
+ uint64_t /* max_dead_capacity */,
+ uint64_t /* capacity */)
// Tells the renderer to clear the cache.
IPC_MESSAGE_CONTROL1(WebCacheMsg_ClearCache,

Powered by Google App Engine
This is Rietveld 408576698