Changeset 174288 in webkit
- Timestamp:
- Oct 3, 2014, 1:45:29 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r174287 r174288 1 2014-10-03 Jer Noble <jer.noble@apple.com> 2 3 Revert an accidental change introduced by r173318. 4 5 Rubber-stamped by Tim Horton. 6 7 * WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm: 8 (WebKit::TiledCoreAnimationDrawingArea::suspendPainting): 9 (WebKit::TiledCoreAnimationDrawingArea::resumePainting): 10 1 11 2014-10-03 Tim Horton <timothy_horton@apple.com> 2 12 -
trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm
r174231 r174288 350 350 m_isPaintingSuspended = true; 351 351 352 //[m_hostingLayer setValue:@YES forKey:@"NSCAViewRenderPaused"];353 //[[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidPauseNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]];352 [m_hostingLayer setValue:@YES forKey:@"NSCAViewRenderPaused"]; 353 [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidPauseNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]]; 354 354 } 355 355 … … 363 363 m_isPaintingSuspended = false; 364 364 365 //[m_hostingLayer setValue:@NO forKey:@"NSCAViewRenderPaused"];366 //[[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidResumeNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]];365 [m_hostingLayer setValue:@NO forKey:@"NSCAViewRenderPaused"]; 366 [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidResumeNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]]; 367 367 } 368 368
Note:
See TracChangeset
for help on using the changeset viewer.