Title: [105048] trunk/Source/WebCore
Revision
105048
Author
[email protected]
Date
2012-01-16 03:09:00 -0800 (Mon, 16 Jan 2012)

Log Message

Compilation error on build-webkit --debug --no-request-animation-frame on mac.
https://bugs.webkit.org/show_bug.cgi?id=75875

Patch by Pablo Flouret <[email protected]> on 2012-01-16
Reviewed by Hajime Morita.

* dom/Document.cpp:
(WebCore::Document::windowScreenDidChange):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (105047 => 105048)


--- trunk/Source/WebCore/ChangeLog	2012-01-16 11:04:37 UTC (rev 105047)
+++ trunk/Source/WebCore/ChangeLog	2012-01-16 11:09:00 UTC (rev 105048)
@@ -1,3 +1,13 @@
+2012-01-16  Pablo Flouret  <[email protected]>
+
+        Compilation error on build-webkit --debug --no-request-animation-frame on mac.
+        https://bugs.webkit.org/show_bug.cgi?id=75875
+
+        Reviewed by Hajime Morita.
+
+        * dom/Document.cpp:
+        (WebCore::Document::windowScreenDidChange):
+
 2012-01-16  Csaba Osztrogonác  <[email protected]>
 
         Web Inspector: Fix GoToLineDialog and extract common dialog functionality.

Modified: trunk/Source/WebCore/dom/Document.cpp (105047 => 105048)


--- trunk/Source/WebCore/dom/Document.cpp	2012-01-16 11:04:37 UTC (rev 105047)
+++ trunk/Source/WebCore/dom/Document.cpp	2012-01-16 11:09:00 UTC (rev 105048)
@@ -4934,6 +4934,8 @@
 #if ENABLE(REQUEST_ANIMATION_FRAME)
     if (m_scriptedAnimationController)
         m_scriptedAnimationController->windowScreenDidChange(displayID);
+#else
+    UNUSED_PARAM(displayID);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to