Changeset 136206 in webkit
- Timestamp:
- Nov 29, 2012, 10:15:58 PM (14 years ago)
- Location:
- tags/Safari-537.20/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Shared/mac/ChildProcessMac.mm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/Safari-537.20/Source/WebKit2/ChangeLog
r136197 r136206 1 2012-11-29 Kiran Muppala <cmuppala@apple.com> 2 3 Set timer coalescing policy of WebKit2 processes to that of visible applications. 4 <rdar://problem/12723222> 5 6 Reviewed by NOBODY. This patch will not be submitted to trunk until review. It is low enough risk to commit 7 on a branch without review. 8 9 Set timer coalescing policy of WebKit2 processes to that of visible applications until they can manage 10 the policy better. 11 12 * Shared/mac/ChildProcessMac.mm: 13 (WebKit::ChildProcess::platformInitialize): Add call to WKSetTimerCoalescingPolicy. 14 1 15 2012-11-29 Alexey Proskuryakov <ap@apple.com> 2 16 -
tags/Safari-537.20/Source/WebKit2/Shared/mac/ChildProcessMac.mm
r135020 r136206 26 26 #import "config.h" 27 27 #import "ChildProcess.h" 28 29 #import <WebKitSystemInterface.h> 28 30 29 31 namespace WebKit { … … 67 69 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090 68 70 setpriority(PRIO_DARWIN_PROCESS, 0, 0); 71 WKSetTimerCoalescingPolicy(WKTimerCoalescingPolicyForegroundProcess); 69 72 #endif 70 73 disableProcessSuppression(processSuppressionVisibleApplicationReason);
Note:
See TracChangeset
for help on using the changeset viewer.