Title: [220937] trunk/Source/WebCore
Revision
220937
Author
[email protected]
Date
2017-08-18 15:34:24 -0700 (Fri, 18 Aug 2017)

Log Message

iOS 10 debug build fix.

* dom/DataTransfer.cpp:
(WebCore::DataTransfer::DataTransfer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (220936 => 220937)


--- trunk/Source/WebCore/ChangeLog	2017-08-18 22:15:25 UTC (rev 220936)
+++ trunk/Source/WebCore/ChangeLog	2017-08-18 22:34:24 UTC (rev 220937)
@@ -1,5 +1,12 @@
 2017-08-18  Ryosuke Niwa  <[email protected]>
 
+        iOS 10 debug build fix.
+
+        * dom/DataTransfer.cpp:
+        (WebCore::DataTransfer::DataTransfer):
+
+2017-08-18  Ryosuke Niwa  <[email protected]>
+
         Rename DataTransferAccessPolicy to match spec and refactor related node
         https://bugs.webkit.org/show_bug.cgi?id=175704
 

Modified: trunk/Source/WebCore/dom/DataTransfer.cpp (220936 => 220937)


--- trunk/Source/WebCore/dom/DataTransfer.cpp	2017-08-18 22:15:25 UTC (rev 220936)
+++ trunk/Source/WebCore/dom/DataTransfer.cpp	2017-08-18 22:34:24 UTC (rev 220937)
@@ -69,7 +69,7 @@
 #endif
 {
 #if !ENABLE(DRAG_SUPPORT)
-    ASSERT_UNUSED(type, type != DragAndDropData && type != DragAndDropFiles);
+    ASSERT_UNUSED(type, type != Type::DragAndDropData && type != Type::DragAndDropFiles);
 #endif
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to