Commit 2b64cb12 authored by rdsmith@chromium.org's avatar rdsmith@chromium.org

Raise memory limit for SDCH for mobile.

R=mef@chromium.org
BUG=374917

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

Cr-Commit-Position: refs/heads/master@{#289945}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289945 0039d316-1c4b-4281-b951-d872f2087c98
parent a64e57df
...@@ -22,7 +22,7 @@ namespace net { ...@@ -22,7 +22,7 @@ namespace net {
#if defined(OS_ANDROID) || defined(OS_IOS) #if defined(OS_ANDROID) || defined(OS_IOS)
// static // static
const size_t SdchManager::kMaxDictionaryCount = 1; const size_t SdchManager::kMaxDictionaryCount = 1;
const size_t SdchManager::kMaxDictionarySize = 150 * 1000; const size_t SdchManager::kMaxDictionarySize = 500 * 1000;
#else #else
// static // static
const size_t SdchManager::kMaxDictionaryCount = 20; const size_t SdchManager::kMaxDictionaryCount = 20;
......
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