Commit 3a2bce8a authored by rdsmith's avatar rdsmith Committed by Commit bot

Drop mobile memory size to 500K while SDCH is not hooked up to

MemoryPressureListener.

BUG=447208
R=ellyjones@chromium.org

Review URL: https://codereview.chromium.org/971413002

Cr-Commit-Position: refs/heads/master@{#318909}
parent ba2ded87
...@@ -63,7 +63,7 @@ namespace net { ...@@ -63,7 +63,7 @@ namespace net {
// Adjust SDCH limits downwards for mobile. // Adjust SDCH limits downwards for mobile.
#if defined(OS_ANDROID) || defined(OS_IOS) #if defined(OS_ANDROID) || defined(OS_IOS)
// static // static
const size_t SdchOwner::kMaxTotalDictionarySize = 1000 * 1000; const size_t SdchOwner::kMaxTotalDictionarySize = 500 * 1000;
#else #else
// static // static
const size_t SdchOwner::kMaxTotalDictionarySize = 20 * 1000 * 1000; const size_t SdchOwner::kMaxTotalDictionarySize = 20 * 1000 * 1000;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment