Title: [192451] trunk/Source/WebKit2
Revision
192451
Author
timothy_hor...@apple.com
Date
2015-11-13 16:41:59 -0800 (Fri, 13 Nov 2015)

Log Message

Try to fix the 32-bit build

* UIProcess/mac/WebContextMenuProxyMac.mm:
(WebKit::menuItemIdentifier):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (192450 => 192451)


--- trunk/Source/WebKit2/ChangeLog	2015-11-14 00:40:54 UTC (rev 192450)
+++ trunk/Source/WebKit2/ChangeLog	2015-11-14 00:41:59 UTC (rev 192451)
@@ -1,3 +1,10 @@
+2015-11-13  Timothy Horton  <timothy_hor...@apple.com>
+
+        Try to fix the 32-bit build
+
+        * UIProcess/mac/WebContextMenuProxyMac.mm:
+        (WebKit::menuItemIdentifier):
+
 2015-11-13  Wenson Hsieh  <wenson_hs...@apple.com>
 
         WK2 iOS interaction tests in LayoutTests/fast/events/ios are flaky

Modified: trunk/Source/WebKit2/UIProcess/mac/WebContextMenuProxyMac.mm (192450 => 192451)


--- trunk/Source/WebKit2/UIProcess/mac/WebContextMenuProxyMac.mm	2015-11-14 00:40:54 UTC (rev 192450)
+++ trunk/Source/WebKit2/UIProcess/mac/WebContextMenuProxyMac.mm	2015-11-14 00:41:59 UTC (rev 192451)
@@ -261,6 +261,7 @@
 static NSString *menuItemIdentifier(const ContextMenuAction action)
 {
     switch (action) {
+#if WK_API_ENABLED
     case ContextMenuItemTagCopy:
         return _WKMenuItemIdentifierCopy;
 
@@ -320,6 +321,7 @@
 
     case ContextMenuItemTagSpeechMenu:
         return _WKMenuItemIdentifierSpeechMenu;
+#endif // WK_API_ENABLED
 
     default:
         return nil;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to