Changeset 184059 in webkit
- Timestamp:
- May 10, 2015, 4:28:55 PM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/API/mac/WKView.mm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r184058 r184059 1 2015-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 1 11 2015-05-10 Dan Bernstein <mitz@apple.com> 2 12 -
trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm
r183978 r184059 4604 4604 } 4605 4605 4606 4607 4606 - (NSArray *)_actionMenuItemsForHitTestResult:(WKHitTestResultRef)hitTestResult withType:(_WKActionMenuType)type defaultActionMenuItems:(NSArray *)defaultMenuItems 4608 4607 { … … 4634 4633 - (void)_didChangeContentSize:(NSSize)newSize 4635 4634 { 4636 4637 4635 } 4638 4636 … … 4648 4646 [lookupDefinitionModuleClass hideDefinition]; 4649 4647 4648 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000 4650 4649 DDActionsManager *actionsManager = [getDDActionsManagerClass() sharedManager]; 4651 4650 if ([actionsManager respondsToSelector:@selector(requestBubbleClosureUnanchorOnFailure:)]) 4652 4651 [actionsManager requestBubbleClosureUnanchorOnFailure:YES]; 4652 #endif 4653 4653 } 4654 4654
Note:
See TracChangeset
for help on using the changeset viewer.