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

Unified Diff: base/memory/discardable_memory_emulated.cc

Issue 341773002: Revert 268371 "base: Increase emulated discardable memory limit." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: base/memory/discardable_memory_emulated.cc
diff --git a/base/memory/discardable_memory_emulated.cc b/base/memory/discardable_memory_emulated.cc
index b70540236a8d51184ecf2526a6ba67b56e2ed145..140fdb01e28952acd80025c5bda9591fa67276c3 100644
--- a/base/memory/discardable_memory_emulated.cc
+++ b/base/memory/discardable_memory_emulated.cc
@@ -10,10 +10,11 @@
namespace base {
namespace {
-// This is admittedly pretty magical. It's approximately enough memory for eight
+// This is admittedly pretty magical. It's approximately enough memory for four
// 2560x1600 images.
-const size_t kEmulatedMemoryLimit = 128 * 1024 * 1024;
-const size_t kEmulatedBytesToKeepUnderModeratePressure = 12 * 1024 * 1024;
+const size_t kEmulatedMemoryLimit = 64 * 1024 * 1024;
+const size_t kEmulatedBytesToKeepUnderModeratePressure =
+ kEmulatedMemoryLimit / 4;
struct SharedState {
SharedState()
« 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