Title: [197892] trunk/Source/WebCore
Revision
197892
Author
achristen...@apple.com
Date
2016-03-09 15:33:55 -0800 (Wed, 09 Mar 2016)

Log Message

Fix Mac build without video enabled after r197633.

* bindings/objc/DOM.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (197891 => 197892)


--- trunk/Source/WebCore/ChangeLog	2016-03-09 23:07:49 UTC (rev 197891)
+++ trunk/Source/WebCore/ChangeLog	2016-03-09 23:33:55 UTC (rev 197892)
@@ -1,3 +1,9 @@
+2016-03-09  Alex Christensen  <achristen...@webkit.org>
+
+        Fix Mac build without video enabled after r197633.
+
+        * bindings/objc/DOM.mm:
+
 2016-03-09  Ryosuke Niwa  <rn...@webkit.org>
 
         Rename Node.treeRoot to rootNode and turn it on by default

Modified: trunk/Source/WebCore/bindings/objc/DOM.mm (197891 => 197892)


--- trunk/Source/WebCore/bindings/objc/DOM.mm	2016-03-09 23:07:49 UTC (rev 197891)
+++ trunk/Source/WebCore/bindings/objc/DOM.mm	2016-03-09 23:33:55 UTC (rev 197892)
@@ -33,7 +33,6 @@
 #import "DOMElementInternal.h"
 #import "DOMHTMLCanvasElement.h"
 #import "DOMHTMLTableCellElementInternal.h"
-#import "DOMHTMLVideoElement.h"
 #import "DOMNodeInternal.h"
 #import "DOMPrivate.h"
 #import "DOMRangeInternal.h"
@@ -56,6 +55,10 @@
 #import <_javascript_Core/APICast.h>
 #import <wtf/HashMap.h>
 
+#if ENABLE(VIDEO)
+#import "DOMHTMLVideoElement.h"
+#endif
+
 #if PLATFORM(IOS)
 #import "FocusController.h"
 #import "HTMLLinkElement.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to