Title: [174288] trunk/Source/WebKit2
- Revision
- 174288
- Author
- [email protected]
- Date
- 2014-10-03 13:45:29 -0700 (Fri, 03 Oct 2014)
Log Message
Revert an accidental change introduced by r173318.
Rubber-stamped by Tim Horton.
* WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
(WebKit::TiledCoreAnimationDrawingArea::suspendPainting):
(WebKit::TiledCoreAnimationDrawingArea::resumePainting):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (174287 => 174288)
--- trunk/Source/WebKit2/ChangeLog 2014-10-03 20:36:51 UTC (rev 174287)
+++ trunk/Source/WebKit2/ChangeLog 2014-10-03 20:45:29 UTC (rev 174288)
@@ -1,3 +1,13 @@
+2014-10-03 Jer Noble <[email protected]>
+
+ Revert an accidental change introduced by r173318.
+
+ Rubber-stamped by Tim Horton.
+
+ * WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
+ (WebKit::TiledCoreAnimationDrawingArea::suspendPainting):
+ (WebKit::TiledCoreAnimationDrawingArea::resumePainting):
+
2014-10-03 Tim Horton <[email protected]>
WKWebView snapshot of Daring Fireball has the wrong color in the obscured inset
Modified: trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm (174287 => 174288)
--- trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm 2014-10-03 20:36:51 UTC (rev 174287)
+++ trunk/Source/WebKit2/WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm 2014-10-03 20:45:29 UTC (rev 174288)
@@ -349,8 +349,8 @@
ASSERT(!m_isPaintingSuspended);
m_isPaintingSuspended = true;
-// [m_hostingLayer setValue:@YES forKey:@"NSCAViewRenderPaused"];
-// [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidPauseNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]];
+ [m_hostingLayer setValue:@YES forKey:@"NSCAViewRenderPaused"];
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidPauseNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]];
}
void TiledCoreAnimationDrawingArea::resumePainting()
@@ -362,8 +362,8 @@
}
m_isPaintingSuspended = false;
-// [m_hostingLayer setValue:@NO forKey:@"NSCAViewRenderPaused"];
-// [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidResumeNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]];
+ [m_hostingLayer setValue:@NO forKey:@"NSCAViewRenderPaused"];
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"NSCAViewRenderDidResumeNotification" object:nil userInfo:[NSDictionary dictionaryWithObject:m_hostingLayer.get() forKey:@"layer"]];
}
void TiledCoreAnimationDrawingArea::setExposedRect(const FloatRect& exposedRect)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes