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

Unified Diff: content/common/gpu/gpu_memory_manager.cc

Issue 547823003: Increase the memory limit to 512 MB per renderer from 256 MB (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_memory_manager.cc
diff --git a/content/common/gpu/gpu_memory_manager.cc b/content/common/gpu/gpu_memory_manager.cc
index 045210aa8951b8ad3185ff6fc1f9708c29a0a8b1..b3c98c02168cebb5dfdb310b160524f94b69f53a 100644
--- a/content/common/gpu/gpu_memory_manager.cc
+++ b/content/common/gpu/gpu_memory_manager.cc
@@ -106,7 +106,7 @@ void GpuMemoryManager::UpdateAvailableGpuMemory() {
#else
// Ignore what the system said and give all clients the same maximum
// allocation on desktop platforms.
- client_hard_limit_bytes_ = 256 * 1024 * 1024;
+ client_hard_limit_bytes_ = 512 * 1024 * 1024;
#endif
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698