Changeset 174288 in webkit


Ignore:
Timestamp:
Oct 3, 2014, 1:45:29 PM (11 years ago)
Author:
jer.noble@apple.com
Message:

Revert an accidental change introduced by r173318.

Rubber-stamped by Tim Horton.

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::TiledCoreAnimationDrawingArea::suspendPainting):
(WebKit::TiledCoreAnimationDrawingArea::resumePainting):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r174287 r174288  
     12014-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
    1112014-10-03  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm

    r174231 r174288  
    350350    m_isPaintingSuspended = true;
    351351
    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"]];
    354354}
    355355
     
    363363    m_isPaintingSuspended = false;
    364364
    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"]];
    367367}
    368368
Note: See TracChangeset for help on using the changeset viewer.