diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-01 02:03:19 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-01 02:03:19 +0000 |
commit | b35990dc9e94e765edeb007c6e45b50587b9251a (patch) | |
tree | 69ee9fc994ba542647d37eaba95af566fe77639d /webkit | |
parent | 06ff3c5366c4d00653a33a4666c57a3e861d850d (diff) | |
download | chromium_src-b35990dc9e94e765edeb007c6e45b50587b9251a.zip chromium_src-b35990dc9e94e765edeb007c6e45b50587b9251a.tar.gz chromium_src-b35990dc9e94e765edeb007c6e45b50587b9251a.tar.bz2 |
Turn the knobs on the JIT cap
BUG=115658
BUG=113891
Review URL: https://chromiumcodereview.appspot.com/9557008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124332 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/plugins/npapi/webplugin_delegate_impl_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/npapi/webplugin_delegate_impl_win.cc b/webkit/plugins/npapi/webplugin_delegate_impl_win.cc index d7b2bb0..690578b 100644 --- a/webkit/plugins/npapi/webplugin_delegate_impl_win.cc +++ b/webkit/plugins/npapi/webplugin_delegate_impl_win.cc @@ -148,9 +148,9 @@ static scoped_ptr<base::Lock> g_exec_mem_lock; bool UpdateExecMemSize(intptr_t size) { base::AutoLock locked(*g_exec_mem_lock); - const intptr_t kMaxPluginExecMemSize = 128 * 1024 * 1024; // 128mb. + const intptr_t kMaxPluginExecMemSize = 192 * 1024 * 1024; // 192mb. const intptr_t kMaxPluginExecMemSizeSpike = 64 * 1024 * 1024; // 64mb. - const DWORD kTimeLimit = 8; // 8 minute timeout. + const DWORD kTimeLimit = 6; // 6 minute timeout. static intptr_t s_exec_mem_size = 0; static intptr_t s_exec_mem_size_old = 0; |