summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorinferno@chromium.org <inferno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-09 15:35:45 +0000
committerinferno@chromium.org <inferno@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-09 15:35:45 +0000
commit016f20d7a66e871a5ac9d0a411a249ee59d847e9 (patch)
treebfa27b21a1a4062fc29de146b71389a623f1ea65
parent1cc47ca0f6d67dd697f79d435b949e5ef260c86f (diff)
downloadchromium_src-016f20d7a66e871a5ac9d0a411a249ee59d847e9.zip
chromium_src-016f20d7a66e871a5ac9d0a411a249ee59d847e9.tar.gz
chromium_src-016f20d7a66e871a5ac9d0a411a249ee59d847e9.tar.bz2
Increase plugin JIT spike cap.
BUG=115658 Review URL: https://chromiumcodereview.appspot.com/9663004 git-svn-id: svn://svn.chromium.org/chrome/branches/1025/src@125848 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/plugins/npapi/webplugin_delegate_impl_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl_win.cc b/webkit/plugins/npapi/webplugin_delegate_impl_win.cc
index 99fcb73..46c0bc7 100644
--- a/webkit/plugins/npapi/webplugin_delegate_impl_win.cc
+++ b/webkit/plugins/npapi/webplugin_delegate_impl_win.cc
@@ -148,7 +148,7 @@ static scoped_ptr<base::Lock> g_exec_mem_lock;
bool UpdateExecMemSize(intptr_t size) {
base::AutoLock locked(*g_exec_mem_lock);
- const intptr_t kMaxPluginExecMemSizeSpike = 80 * 1024 * 1024; // 80mb.
+ const intptr_t kMaxPluginExecMemSizeSpike = 96 * 1024 * 1024; // 96mb.
const DWORD kTimeLimit = 6; // 6 minute timeout.
static intptr_t s_exec_mem_size = 0;