Title: [121646] trunk/Source
Revision
121646
Author
[email protected]
Date
2012-07-01 17:27:20 -0700 (Sun, 01 Jul 2012)

Log Message

Make the "Inspect Element" context menu item appear in nightly builds again.

rdar://problem/11702613
https://webkit.org/b/89323

Reviewed by Dan Bernstein.

Source/WebCore:

* platform/ContextMenuItem.h:
Fix the order of the ContextMenuAction enum to be binary compatible with
older versions of WebKit.

Source/WebKit/mac:

* WebView/WebUIDelegatePrivate.h:
Add missing enums that were added in ContextMenuItem.h but left out here.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121645 => 121646)


--- trunk/Source/WebCore/ChangeLog	2012-07-02 00:08:47 UTC (rev 121645)
+++ trunk/Source/WebCore/ChangeLog	2012-07-02 00:27:20 UTC (rev 121646)
@@ -1,3 +1,16 @@
+2012-07-01  Timothy Hatcher  <[email protected]>
+
+        Make the "Inspect Element" context menu item appear in nightly builds again.
+
+        rdar://problem/11702613
+        https://webkit.org/b/89323
+
+        Reviewed by Dan Bernstein.
+
+        * platform/ContextMenuItem.h:
+        Fix the order of the ContextMenuAction enum to be binary compatible with
+        older versions of WebKit.
+
 2012-07-01  Dan Bernstein  <[email protected]>
 
         <rdar://problem/11785743> [mac] Non-BMP characters in vertical text appear as missing glyphs

Modified: trunk/Source/WebCore/platform/ContextMenuItem.h (121645 => 121646)


--- trunk/Source/WebCore/platform/ContextMenuItem.h	2012-07-02 00:08:47 UTC (rev 121645)
+++ trunk/Source/WebCore/platform/ContextMenuItem.h	2012-07-02 00:27:20 UTC (rev 121646)
@@ -134,7 +134,6 @@
         ContextMenuItemTagRightToLeft,
         ContextMenuItemTagPDFSinglePageScrolling,
         ContextMenuItemTagPDFFacingPagesScrolling,
-        ContextMenuItemTagDictationAlternative,
 #if ENABLE(INSPECTOR)
         ContextMenuItemTagInspectElement,
 #endif
@@ -164,6 +163,7 @@
         ContextMenuItemTagEnterVideoFullscreen,
         ContextMenuItemTagMediaPlayPause,
         ContextMenuItemTagMediaMute,
+        ContextMenuItemTagDictationAlternative,
         ContextMenuItemBaseCustomTag = 5000,
         ContextMenuItemCustomTagNoAction = 5998,
         ContextMenuItemLastCustomTag = 5999,

Modified: trunk/Source/WebKit/mac/ChangeLog (121645 => 121646)


--- trunk/Source/WebKit/mac/ChangeLog	2012-07-02 00:08:47 UTC (rev 121645)
+++ trunk/Source/WebKit/mac/ChangeLog	2012-07-02 00:27:20 UTC (rev 121646)
@@ -1,3 +1,15 @@
+2012-07-01  Timothy Hatcher  <[email protected]>
+
+        Make the "Inspect Element" context menu item appear in nightly builds again.
+
+        rdar://problem/11702613
+        https://webkit.org/b/89323
+
+        Reviewed by Dan Bernstein.
+
+        * WebView/WebUIDelegatePrivate.h:
+        Add missing enums that were added in ContextMenuItem.h but left out here.
+
 2012-06-29  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r121529.

Modified: trunk/Source/WebKit/mac/WebView/WebUIDelegatePrivate.h (121645 => 121646)


--- trunk/Source/WebKit/mac/WebView/WebUIDelegatePrivate.h	2012-07-02 00:08:47 UTC (rev 121645)
+++ trunk/Source/WebKit/mac/WebView/WebUIDelegatePrivate.h	2012-07-02 00:27:20 UTC (rev 121646)
@@ -89,6 +89,17 @@
     WebMenuItemTagMakeLowerCase,
     WebMenuItemTagCapitalize,
     WebMenuItemTagChangeBack,
+    WebMenuItemTagOpenMediaInNewWindow,
+    WebMenuItemTagCopyMediaLinkToClipboard,
+    WebMenuItemTagToggleMediaControls,
+    WebMenuItemTagToggleMediaLoop,
+    WebMenuItemTagEnterVideoFullscreen,
+    WebMenuItemTagMediaPlayPause,
+    WebMenuItemTagMediaMute,
+    WebMenuItemTagDictationAlternative,
+    WebMenuItemBaseCustomTag = 5000,
+    WebMenuItemCustomTagNoAction = 5998,
+    WebMenuItemLastCustomTag = 5999,
     WebMenuItemTagBaseApplication = 10000
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to