Title: [210363] trunk/Source/WebKit2
Revision
210363
Author
enr...@apple.com
Date
2017-01-05 10:54:47 -0800 (Thu, 05 Jan 2017)

Log Message

Unreviewed build fix after https://trac.webkit.org/changeset/210360

* UIProcess/Cocoa/WebViewImpl.mm:
(WebKit::WebViewImpl::performDragOperation):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (210362 => 210363)


--- trunk/Source/WebKit2/ChangeLog	2017-01-05 18:32:24 UTC (rev 210362)
+++ trunk/Source/WebKit2/ChangeLog	2017-01-05 18:54:47 UTC (rev 210363)
@@ -1,5 +1,12 @@
 2017-01-05  Enrica Casucci  <enr...@apple.com>
 
+        Unreviewed build fix after https://trac.webkit.org/changeset/210360
+
+        * UIProcess/Cocoa/WebViewImpl.mm:
+        (WebKit::WebViewImpl::performDragOperation):
+
+2017-01-05  Enrica Casucci  <enr...@apple.com>
+
         Support File Promise during drag for macOS.
         https://bugs.webkit.org/show_bug.cgi?id=165204
         rdar://problem/19595567

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm (210362 => 210363)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm	2017-01-05 18:32:24 UTC (rev 210362)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebViewImpl.mm	2017-01-05 18:54:47 UTC (rev 210363)
@@ -3662,7 +3662,7 @@
         createSandboxExtensionsIfNeeded(fileNames, sandboxExtensionHandle, sandboxExtensionForUpload);
     }
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200
-    else if (![types containsObject:WebArchivePboardType] && [types containsObject:NSFilesPromisePboardType]) {
+    else if (![types containsObject:PasteboardTypes::WebArchivePboardType] && [types containsObject:NSFilesPromisePboardType]) {
         NSArray *files = [draggingInfo.draggingPasteboard propertyListForType:NSFilesPromisePboardType];
         if (![files isKindOfClass:[NSArray class]]) {
             delete dragData;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to