Title: [87698] trunk/Source/WebCore
Revision
87698
Author
ddkil...@apple.com
Date
2011-05-30 15:00:57 -0700 (Mon, 30 May 2011)

Log Message

BUILD FIX for r87692 with !ENABLE(FULLSCREEN_API)

* dom/EventDispatcher.cpp:
(WebCore::EventDispatcher::determineDispatchBehavior): Mark
shadowRoot as an unused parameter with !ENABLE(FULLSCREEN_API).

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (87697 => 87698)


--- trunk/Source/WebCore/ChangeLog	2011-05-30 20:57:18 UTC (rev 87697)
+++ trunk/Source/WebCore/ChangeLog	2011-05-30 22:00:57 UTC (rev 87698)
@@ -1,3 +1,11 @@
+2011-05-30  David Kilzer  <ddkil...@apple.com>
+
+        BUILD FIX for r87692 with !ENABLE(FULLSCREEN_API)
+
+        * dom/EventDispatcher.cpp:
+        (WebCore::EventDispatcher::determineDispatchBehavior): Mark
+        shadowRoot as an unused parameter with !ENABLE(FULLSCREEN_API).
+
 2011-05-30  No'am Rosenthal  <noam.rosent...@nokia.com>
 
         Reviewed by Andreas Kling.

Modified: trunk/Source/WebCore/dom/EventDispatcher.cpp (87697 => 87698)


--- trunk/Source/WebCore/dom/EventDispatcher.cpp	2011-05-30 20:57:18 UTC (rev 87697)
+++ trunk/Source/WebCore/dom/EventDispatcher.cpp	2011-05-30 22:00:57 UTC (rev 87698)
@@ -34,6 +34,7 @@
 #include "ScopedEventQueue.h"
 #include "WindowEventContext.h"
 #include <wtf/RefPtr.h>
+#include <wtf/UnusedParam.h>
 
 #if ENABLE(SVG)
 #include "SVGElementInstance.h"
@@ -377,6 +378,8 @@
         if (element->isMediaElement() && shadowRoot && shadowRoot->shadowHost() == element)
             return StayInsideShadowDOM;
     }
+#else
+    UNUSED_PARAM(shadowRoot);
 #endif
 
     // Per XBL 2.0 spec, mutation events should never cross shadow DOM boundary:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to