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

Unified Diff: components/web_cache/renderer/web_cache_render_process_observer.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/renderer/web_cache_render_process_observer.h
diff --git a/components/web_cache/renderer/web_cache_render_process_observer.h b/components/web_cache/renderer/web_cache_render_process_observer.h
index b683fa73bcced11e10765fbf5949ffbef248f4ea..714ef231f2bb0134f0d83b3e06e24b1a7fbca4b9 100644
--- a/components/web_cache/renderer/web_cache_render_process_observer.h
+++ b/components/web_cache/renderer/web_cache_render_process_observer.h
@@ -31,9 +31,9 @@ class WebCacheRenderProcessObserver : public content::RenderProcessObserver {
void OnRenderProcessShutdown() override;
// Message handlers.
- void OnSetCacheCapacities(uint32_t min_dead_capacity,
- uint32_t max_dead_capacity,
- uint32_t capacity);
+ void OnSetCacheCapacities(uint64_t min_dead_capacity,
+ uint64_t max_dead_capacity,
+ uint64_t capacity);
// If |on_navigation| is true, the clearing is delayed until the next
// navigation event.
void OnClearCache(bool on_navigation);
« no previous file with comments | « components/web_cache/common/web_cache_messages.h ('k') | components/web_cache/renderer/web_cache_render_process_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698