cef/patch/patches/webcore_document.patch
2012-04-26 14:10:24 +00:00

20 lines
782 B
Diff

Index: Document.cpp
===================================================================
--- Document.cpp (revision 102901)
+++ Document.cpp (working copy)
@@ -5079,8 +5079,13 @@
#if ENABLE(REQUEST_ANIMATION_FRAME)
int Document::webkitRequestAnimationFrame(PassRefPtr<RequestAnimationFrameCallback> callback, Element* animationElement)
{
- if (!m_scriptedAnimationController)
+ if (!m_scriptedAnimationController) {
+#if USE(REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR)
m_scriptedAnimationController = ScriptedAnimationController::create(this, page()->displayID());
+#else
+ m_scriptedAnimationController = ScriptedAnimationController::create(this, 0);
+#endif
+ }
return m_scriptedAnimationController->registerCallback(callback, animationElement);
}