Changeset 121646 in webkit


Ignore:
Timestamp:
Jul 1, 2012 5:27:20 PM (12 years ago)
Author:
timothy@apple.com
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.

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r121645 r121646  
     12012-07-01  Timothy Hatcher  <timothy@apple.com>
     2
     3        Make the "Inspect Element" context menu item appear in nightly builds again.
     4
     5        rdar://problem/11702613
     6        https://webkit.org/b/89323
     7
     8        Reviewed by Dan Bernstein.
     9
     10        * platform/ContextMenuItem.h:
     11        Fix the order of the ContextMenuAction enum to be binary compatible with
     12        older versions of WebKit.
     13
    1142012-07-01  Dan Bernstein  <mitz@apple.com>
    215
  • trunk/Source/WebCore/platform/ContextMenuItem.h

    r120357 r121646  
    135135        ContextMenuItemTagPDFSinglePageScrolling,
    136136        ContextMenuItemTagPDFFacingPagesScrolling,
    137         ContextMenuItemTagDictationAlternative,
    138137#if ENABLE(INSPECTOR)
    139138        ContextMenuItemTagInspectElement,
     
    165164        ContextMenuItemTagMediaPlayPause,
    166165        ContextMenuItemTagMediaMute,
     166        ContextMenuItemTagDictationAlternative,
    167167        ContextMenuItemBaseCustomTag = 5000,
    168168        ContextMenuItemCustomTagNoAction = 5998,
  • trunk/Source/WebKit/mac/ChangeLog

    r121536 r121646  
     12012-07-01  Timothy Hatcher  <timothy@apple.com>
     2
     3        Make the "Inspect Element" context menu item appear in nightly builds again.
     4
     5        rdar://problem/11702613
     6        https://webkit.org/b/89323
     7
     8        Reviewed by Dan Bernstein.
     9
     10        * WebView/WebUIDelegatePrivate.h:
     11        Add missing enums that were added in ContextMenuItem.h but left out here.
     12
    1132012-06-29  Sheriff Bot  <webkit.review.bot@gmail.com>
    214
  • trunk/Source/WebKit/mac/WebView/WebUIDelegatePrivate.h

    r110586 r121646  
    9090    WebMenuItemTagCapitalize,
    9191    WebMenuItemTagChangeBack,
     92    WebMenuItemTagOpenMediaInNewWindow,
     93    WebMenuItemTagCopyMediaLinkToClipboard,
     94    WebMenuItemTagToggleMediaControls,
     95    WebMenuItemTagToggleMediaLoop,
     96    WebMenuItemTagEnterVideoFullscreen,
     97    WebMenuItemTagMediaPlayPause,
     98    WebMenuItemTagMediaMute,
     99    WebMenuItemTagDictationAlternative,
     100    WebMenuItemBaseCustomTag = 5000,
     101    WebMenuItemCustomTagNoAction = 5998,
     102    WebMenuItemLastCustomTag = 5999,
    92103    WebMenuItemTagBaseApplication = 10000
    93104};
Note: See TracChangeset for help on using the changeset viewer.