⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 184059 in webkit


Ignore:
Timestamp:
May 10, 2015, 4:28:55 PM (11 years ago)
Author:
Darin Adler
Message:

Fix internal Apple builds on Mavericks.

  • UIProcess/API/mac/WKView.mm:

(-[WKView _dismissContentRelativeChildWindows]): Added missing conditionals around
some code that is for OS X 10.10 or newer only. There were similar conditionals around
other nearby code in this file, and around other uses of the same method in other files,
so matched the style.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r184058 r184059  
     12015-05-10  Darin Adler  <darin@apple.com>
     2
     3        Fix internal Apple builds on Mavericks.
     4
     5        * UIProcess/API/mac/WKView.mm:
     6        (-[WKView _dismissContentRelativeChildWindows]): Added missing conditionals around
     7        some code that is for OS X 10.10 or newer only. There were similar conditionals around
     8        other nearby code in this file, and around other uses of the same method in other files,
     9        so matched the style.
     10
    1112015-05-10  Dan Bernstein  <mitz@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm

    r183978 r184059  
    46044604}
    46054605
    4606 
    46074606- (NSArray *)_actionMenuItemsForHitTestResult:(WKHitTestResultRef)hitTestResult withType:(_WKActionMenuType)type defaultActionMenuItems:(NSArray *)defaultMenuItems
    46084607{
     
    46344633- (void)_didChangeContentSize:(NSSize)newSize
    46354634{
    4636 
    46374635}
    46384636
     
    46484646            [lookupDefinitionModuleClass hideDefinition];
    46494647
     4648#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
    46504649        DDActionsManager *actionsManager = [getDDActionsManagerClass() sharedManager];
    46514650        if ([actionsManager respondsToSelector:@selector(requestBubbleClosureUnanchorOnFailure:)])
    46524651            [actionsManager requestBubbleClosureUnanchorOnFailure:YES];
     4652#endif
    46534653    }
    46544654
Note: See TracChangeset for help on using the changeset viewer.