Changeset 147447 in webkit
- Timestamp:
- Apr 2, 2013, 10:35:33 AM (12 years ago)
- Location:
- trunk/Source/WebKit/mac
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/mac/ChangeLog
r147363 r147447 1 2013-04-01 Ryosuke Niwa <rniwa@webkit.org> 2 3 WebKit/mac shouldn't have code for Mac 10.5 and earlier 4 https://bugs.webkit.org/show_bug.cgi?id=113746 5 6 Reviewed by Darin Adler. 7 8 Deleted the code for 10.5 and removed if-defs for 10.6. 9 10 * Plugins/Hosted/WebHostedNetscapePluginView.mm: 11 (-[WebHostedNetscapePluginView createPlugin]): 12 * Plugins/WebBaseNetscapePluginView.mm: 13 (-[WebBaseNetscapePluginView initWithFrame:pluginPackage:URL:baseURL:MIMEType:attributeKeys:attributeValues:loadManually:element:WebCore::]): 14 * Plugins/WebNetscapePluginView.mm: 15 (-[WebNetscapePluginView createPlugin]): 16 (-[WebNetscapePluginView getVariable:forURL:value:length:]): 17 (-[WebNetscapePluginView _workaroundSilverlightFullscreenBug:]): 18 * WebCoreSupport/WebChromeClient.mm: 19 (WebChromeClient::selectItemWritingDirectionIsNatural): 20 (WebChromeClient::selectItemAlignmentFollowsMenuWritingDirection): 21 * WebCoreSupport/WebEditorClient.mm: 22 (core): 23 (WebEditorClient::checkTextOfParagraph): 24 (WebEditorClient::requestCheckingOfString): 25 * WebView/WebDynamicScrollBarsView.mm: 26 (-[WebDynamicScrollBarsView reflectScrolledClipView:]): 27 * WebView/WebFullScreenController.mm: 28 (-[WebFullScreenController _updateMenuAndDockForFullScreen]): 29 * WebView/WebHTMLView.mm: 30 (-[WebHTMLView _documentFragmentFromPasteboard:inContext:allowPlainText:]): 31 (-[WebHTMLView _frameOrBoundsChanged]): 32 (+[WebHTMLView _insertablePasteboardTypes]): 33 (-[WebHTMLView _documentFragmentFromPasteboard:forType:inContext:subresources:]): 34 (-[WebHTMLView validateUserInterfaceItemWithoutDelegate:]): 35 (writingDirectionKeyBindingsEnabled): 36 (-[WebHTMLView _lookUpInDictionaryFromMenu:]): 37 (-[WebHTMLView attachRootLayer:]): 38 * WebView/WebHTMLViewInternal.h: 39 * WebView/WebPDFDocumentExtras.mm: 40 * WebView/WebPreferences.mm: 41 (+[WebPreferences initialize]): 42 * WebView/WebResourceInternal.h: 43 * WebView/WebScriptDebugDelegate.h: 44 * WebView/WebView.mm: 45 (-[WebView _commonInitializationWithFrameName:groupName:]): 46 (-[WebView _preferencesChanged:]): 47 (+[WebView initialize]): 48 (clientNeedsWebViewInitThreadWorkaround): 49 (-[WebView validateUserInterfaceItemWithoutDelegate:]): 50 (-[WebView setGrammarCheckingEnabled:]): 51 (-[WebView isAutomaticQuoteSubstitutionEnabled]): 52 (-[WebView isAutomaticLinkDetectionEnabled]): 53 (-[WebView isAutomaticDashSubstitutionEnabled]): 54 (-[WebView isAutomaticTextReplacementEnabled]): 55 (-[WebView isAutomaticSpellingCorrectionEnabled]): 56 (-[WebView _searchWithSpotlightFromMenu:]): 57 (WebInstallMemoryPressureHandler): 58 * WebView/WebViewPrivate.h: 59 1 60 2013-04-01 Tim Horton <timothy_horton@apple.com> 2 61 -
trunk/Source/WebKit/mac/Plugins/Hosted/WebHostedNetscapePluginView.mm
r122400 r147447 126 126 if (accleratedCompositingEnabled && _proxy->rendererType() == UseAcceleratedCompositing) { 127 127 // FIXME: This code can be shared between WebHostedNetscapePluginView and WebNetscapePluginView. 128 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060129 128 // Since this layer isn't going to be inserted into a view, we need to create another layer and flip its geometry 130 129 // in order to get the coordinate system right. … … 137 136 realPluginLayer.get().autoresizingMask = kCALayerWidthSizable | kCALayerHeightSizable; 138 137 [_pluginLayer.get() addSublayer:realPluginLayer.get()]; 139 #endif140 138 141 139 // Eagerly enter compositing mode, since we know we'll need it. This avoids firing setNeedsStyleRecalc() -
trunk/Source/WebKit/mac/Plugins/WebBaseNetscapePluginView.mm
r122400 r147447 102 102 _baseURL.adoptNS([baseURL copy]); 103 103 _MIMEType.adoptNS([MIME copy]); 104 105 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 104 106 105 // Enable "kiosk mode" when instantiating the QT plug-in inside of Dashboard. See <rdar://problem/6878105> 107 106 if ([[[NSBundle mainBundle] bundleIdentifier] isEqualToString:@"com.apple.dashboard.client"] && … … 114 113 [self setAttributeKeys:mutableKeys.get() andValues:mutableValues.get()]; 115 114 } else 116 #endif117 115 [self setAttributeKeys:keys andValues:values]; 118 116 -
trunk/Source/WebKit/mac/Plugins/WebNetscapePluginView.mm
r145453 r147447 1100 1100 if (accleratedCompositingEnabled) { 1101 1101 // FIXME: This code can be shared between WebHostedNetscapePluginView and WebNetscapePluginView. 1102 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10601103 1102 // Since this layer isn't going to be inserted into a view, we need to create another layer and flip its geometry 1104 1103 // in order to get the coordinate system right. … … 1111 1110 realPluginLayer.get().autoresizingMask = kCALayerWidthSizable | kCALayerHeightSizable; 1112 1111 [_pluginLayer.get() addSublayer:realPluginLayer.get()]; 1113 #endif 1112 1114 1113 // Eagerly enter compositing mode, since we know we'll need it. This avoids firing setNeedsStyleRecalc() 1115 1114 // for iframes that contain composited plugins at bad times. https://bugs.webkit.org/show_bug.cgi?id=39033 … … 2232 2231 } 2233 2232 case NPNURLVProxy: { 2234 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10602235 2233 if (!value) 2236 2234 break; … … 2250 2248 2251 2249 return NPERR_NO_ERROR; 2252 #else2253 break;2254 #endif2255 2250 } 2256 2251 } … … 2342 2337 - (void)_workaroundSilverlightFullscreenBug:(BOOL)initializedPlugin 2343 2338 { 2344 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10602345 2339 ASSERT(_isSilverlight); 2346 2340 NPBool isFullscreenPerformanceIssueFixed = 0; … … 2365 2359 CGLReleasePixelFormat(pixelFormatObject); 2366 2360 } 2367 #endif2368 2361 } 2369 2362 -
trunk/Source/WebKit/mac/WebCoreSupport/WebChromeClient.mm
r145170 r147447 840 840 bool WebChromeClient::selectItemWritingDirectionIsNatural() 841 841 { 842 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060843 842 return false; 844 #else 843 } 844 845 bool WebChromeClient::selectItemAlignmentFollowsMenuWritingDirection() 846 { 845 847 return true; 846 #endif847 }848 849 bool WebChromeClient::selectItemAlignmentFollowsMenuWritingDirection()850 {851 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060852 return true;853 #else854 return false;855 #endif856 848 } 857 849 -
trunk/Source/WebKit/mac/WebCoreSupport/WebEditorClient.mm
r145849 r147447 793 793 } 794 794 795 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060796 795 static Vector<TextCheckingResult> core(NSArray *incomingResults, TextCheckingTypeMask checkingTypes) 797 796 { … … 872 871 return results; 873 872 } 874 #endif875 873 876 874 void WebEditorClient::checkTextOfParagraph(const UChar* text, int length, TextCheckingTypeMask checkingTypes, Vector<TextCheckingResult>& results) 877 875 { 878 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060879 876 NSString *textString = [[NSString alloc] initWithCharactersNoCopy:const_cast<UChar*>(text) length:length freeWhenDone:NO]; 880 877 NSArray *incomingResults = [[NSSpellChecker sharedSpellChecker] checkString:textString range:NSMakeRange(0, [textString length]) types:(checkingTypes|NSTextCheckingTypeOrthography) options:nil inSpellDocumentWithTag:spellCheckerDocumentTag() orthography:NULL wordCount:NULL]; 881 878 [textString release]; 882 879 results = core(incomingResults, checkingTypes); 883 #endif884 880 } 885 881 … … 949 945 } 950 946 951 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060952 947 @interface WebEditorSpellCheckResponder : NSObject 953 948 { … … 978 973 979 974 @end 980 #endif981 975 982 976 void WebEditorClient::didCheckSucceed(int sequence, NSArray* results) … … 989 983 void WebEditorClient::requestCheckingOfString(PassRefPtr<WebCore::TextCheckingRequest> request) 990 984 { 991 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060992 985 ASSERT(!m_textCheckingRequest); 993 986 m_textCheckingRequest = request; … … 1002 995 argument:nil order:0 modes:[NSArray arrayWithObject:NSDefaultRunLoopMode]]; 1003 996 }]; 1004 #endif 1005 } 997 } -
trunk/Source/WebKit/mac/WebView/WebDynamicScrollBarsView.mm
r133225 r147447 442 442 // This call updates the initial position correctly. 443 443 [self adjustForScrollOriginChange]; 444 445 #if USE(ACCELERATED_COMPOSITING) && __MAC_OS_X_VERSION_MIN_REQUIRED == 1050446 NSView *documentView = [self documentView];447 if ([documentView isKindOfClass:[WebHTMLView class]]) {448 WebHTMLView *htmlView = (WebHTMLView *)documentView;449 if ([htmlView _isUsingAcceleratedCompositing])450 [htmlView _updateLayerHostingViewPosition];451 }452 #endif453 444 } 454 445 -
trunk/Source/WebKit/mac/WebView/WebFullScreenController.mm
r145414 r147447 424 424 - (void)_updateMenuAndDockForFullScreen 425 425 { 426 // NSApplicationPresentationOptions is available on > 10.6 only:427 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060428 426 NSApplicationPresentationOptions options = NSApplicationPresentationDefault; 429 427 NSScreen* fullscreenScreen = [[self window] screen]; … … 445 443 [NSApp setPresentationOptions:options]; 446 444 else 447 #endif448 445 SetSystemUIMode(_isFullScreen ? kUIModeAllHidden : kUIModeNormal, 0); 449 446 } -
trunk/Source/WebKit/mac/WebView/WebHTMLView.mm
r146961 r147447 289 289 - (void)_propagateDirtyRectsToOpaqueAncestors; 290 290 - (void)_windowChangedKeyState; 291 #if USE(ACCELERATED_COMPOSITING) && __MAC_OS_X_VERSION_MIN_REQUIRED == 1050292 - (void)_updateLayerGeometryFromView;293 #endif294 291 @end 295 292 … … 415 412 @end 416 413 417 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060418 419 414 @interface WebHTMLView (WebHTMLViewTextCheckingInternal) 420 415 - (void)orderFrontSubstitutionsPanel:(id)sender; … … 439 434 @end 440 435 441 #endif442 443 436 @interface WebHTMLView (WebForwardDeclaration) // FIXME: Put this in a normal category and stop doing the forward declaration trick. 444 437 - (void)_setPrinting:(BOOL)printing minimumPageLogicalWidth:(float)minPageWidth logicalHeight:(float)minPageHeight originalPageWidth:(float)pageLogicalWidth originalPageHeight:(float)pageLogicalHeight maximumShrinkRatio:(float)maximumShrinkRatio adjustViewSize:(BOOL)adjustViewSize paginateScreenContent:(BOOL)paginateScreenContent; … … 798 791 return fragment; 799 792 800 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050801 if ([types containsObject:NSPICTPboardType] &&802 (fragment = [self _documentFragmentFromPasteboard:pasteboard803 forType:NSPICTPboardType804 inContext:context805 subresources:0]))806 return fragment;807 #endif808 809 // Only 10.5 and higher support setting and retrieving pasteboard types with UTIs, but we don't believe810 // that any applications on Tiger put types for which we only have a UTI, like PNG, on the pasteboard.811 793 if ([types containsObject:(NSString*)kUTTypePNG] && 812 794 (fragment = [self _documentFragmentFromPasteboard:pasteboard … … 1235 1217 } 1236 1218 _private->lastScrollPosition = origin; 1237 1238 #if USE(ACCELERATED_COMPOSITING) && __MAC_OS_X_VERSION_MIN_REQUIRED == 10501239 [self _updateLayerHostingViewPosition];1240 #endif1241 1219 } 1242 1220 … … 1662 1640 if (!types) { 1663 1641 types = [[NSArray alloc] initWithObjects:WebArchivePboardType, NSHTMLPboardType, NSFilenamesPboardType, NSTIFFPboardType, NSPDFPboardType, 1664 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10501665 NSPICTPboardType,1666 #endif1667 1642 NSURLPboardType, NSRTFDPboardType, NSRTFPboardType, NSStringPboardType, NSColorPboardType, kUTTypePNG, nil]; 1668 1643 CFRetain(types); … … 2051 2026 return fragment; 2052 2027 } 2053 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050 2054 if (pboardType == NSPICTPboardType) { 2055 WebResource *resource = [[WebResource alloc] initWithData:[pasteboard dataForType:NSPICTPboardType] 2056 URL:uniqueURLWithRelativePart(@"image.pict") 2057 MIMEType:@"image/pict" 2058 textEncodingName:nil 2059 frameName:nil]; 2060 DOMDocumentFragment *fragment = [[self _dataSource] _documentFragmentWithImageResource:resource]; 2061 [resource release]; 2062 return fragment; 2063 } 2064 #endif 2065 // Only 10.5 and higher support setting and retrieving pasteboard types with UTIs, but we don't believe 2066 // that any applications on Tiger put types for which we only have a UTI, like PNG, on the pasteboard. 2028 2067 2029 if ([pboardType isEqualToString:(NSString*)kUTTypePNG]) { 2068 2030 WebResource *resource = [[WebResource alloc] initWithData:[pasteboard dataForType:(NSString*)kUTTypePNG] … … 2704 2666 } 2705 2667 2706 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10602707 2668 if (action == @selector(orderFrontSubstitutionsPanel:)) { 2708 2669 NSMenuItem *menuItem = (NSMenuItem *)item; … … 2754 2715 return [self _canEdit]; 2755 2716 } 2756 #endif 2757 2717 2758 2718 Editor::Command command = [self coreCommandBySelector:action]; 2759 2719 if (command.isSupported()) { … … 4902 4862 static BOOL writingDirectionKeyBindingsEnabled() 4903 4863 { 4904 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10604905 4864 return YES; 4906 #else4907 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];4908 return [defaults boolForKey:@"NSAllowsBaseWritingDirectionKeyBindings"] || [defaults boolForKey:@"AppleTextDirection"];4909 #endif4910 4865 } 4911 4866 … … 4939 4894 [self _changeBaseWritingDirectionTo:NSWritingDirectionRightToLeft]; 4940 4895 } 4941 4942 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10504943 - (void)changeBaseWritingDirectionToLTR:(id)sender4944 {4945 [self makeBaseWritingDirectionLeftToRight:sender];4946 }4947 4948 - (void)changeBaseWritingDirectionToRTL:(id)sender4949 {4950 [self makeBaseWritingDirectionRightToLeft:sender];4951 }4952 #endif4953 4896 4954 4897 - (void)makeBaseWritingDirectionNatural:(id)sender … … 5139 5082 } 5140 5083 5141 5142 static CGPoint coreGraphicsScreenPointForAppKitScreenPoint(NSPoint point)5143 {5144 NSArray *screens = [NSScreen screens];5145 5146 if ([screens count] == 0) {5147 // You could theoretically get here if running with no monitor, in which case it doesn't matter5148 // much where the "on-screen" point is.5149 return CGPointMake(point.x, point.y);5150 }5151 5152 // Flip the y coordinate from the top of the menu bar screen -- see 46363905153 return CGPointMake(point.x, NSMaxY([(NSScreen *)[screens objectAtIndex:0] frame]) - point.y);5154 }5155 5156 5157 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10605158 5159 5084 - (void)orderFrontSubstitutionsPanel:(id)sender 5160 5085 { … … 5267 5192 [[self _webView] toggleAutomaticSpellingCorrection:sender]; 5268 5193 } 5269 5270 #endif5271 5194 5272 5195 - (void)_lookUpInDictionaryFromMenu:(id)sender … … 5290 5213 rect.origin.y += [font ascender]; 5291 5214 5292 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10605293 5215 [self showDefinitionForAttributedString:attrString atPoint:rect.origin]; 5294 return;5295 #endif5296 5297 // We soft link to get the function that displays the dictionary (either pop-up window or app) to avoid the performance5298 // penalty of linking to another framework. This function changed signature as well as framework between Tiger and Leopard,5299 // so the two cases are handled separately.5300 5301 typedef void (*ServiceWindowShowFunction)(id unusedDictionaryRef, id inWordString, CFRange selectionRange, id unusedFont, CGPoint textOrigin, Boolean verticalText, id unusedTransform);5302 const char *frameworkPath = "/System/Library/Frameworks/Carbon.framework/Frameworks/HIToolbox.framework/HIToolbox";5303 const char *functionName = "HIDictionaryWindowShow";5304 5305 static bool lookedForFunction = false;5306 static ServiceWindowShowFunction dictionaryServiceWindowShow = NULL;5307 5308 if (!lookedForFunction) {5309 void* langAnalysisFramework = dlopen(frameworkPath, RTLD_LAZY);5310 ASSERT(langAnalysisFramework);5311 if (langAnalysisFramework)5312 dictionaryServiceWindowShow = (ServiceWindowShowFunction)dlsym(langAnalysisFramework, functionName);5313 lookedForFunction = true;5314 }5315 5316 ASSERT(dictionaryServiceWindowShow);5317 if (!dictionaryServiceWindowShow) {5318 NSLog(@"Couldn't find the %s function in %s", functionName, frameworkPath);5319 return;5320 }5321 5322 // The HIDictionaryWindowShow function requires the origin, in CG screen coordinates, of the first character of text in the selection.5323 // FIXME 4945808: We approximate this in a way that works well when a single word is selected, and less well in some other cases5324 // (but no worse than we did in Tiger)5325 NSPoint windowPoint = [self convertPoint:rect.origin toView:nil];5326 NSPoint screenPoint = [[self window] convertBaseToScreen:windowPoint];5327 5328 dictionaryServiceWindowShow(nil, attrString, CFRangeMake(0, [attrString length]), nil,5329 coreGraphicsScreenPointForAppKitScreenPoint(screenPoint), false, nil);5330 5216 } 5331 5217 … … 5480 5366 if (!_private->layerHostingView) { 5481 5367 NSView* hostingView = [[WebLayerHostingFlippedView alloc] initWithFrame:[self bounds]]; 5482 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10605483 5368 [hostingView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)]; 5484 #endif5485 5369 [self addSubview:hostingView]; 5486 5370 [hostingView release]; … … 5491 5375 // Make a container layer, which will get sized/positioned by AppKit and CA. 5492 5376 CALayer* viewLayer = [WebRootLayer layer]; 5493 5494 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505495 // Turn off default animations.5496 NSNull *nullValue = [NSNull null];5497 NSDictionary *actions = [NSDictionary dictionaryWithObjectsAndKeys:5498 nullValue, @"anchorPoint",5499 nullValue, @"bounds",5500 nullValue, @"contents",5501 nullValue, @"contentsRect",5502 nullValue, @"opacity",5503 nullValue, @"position",5504 nullValue, @"sublayerTransform",5505 nullValue, @"sublayers",5506 nullValue, @"transform",5507 nil];5508 [viewLayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]];5509 #endif5510 5377 5511 5378 if ([self layer]) { … … 5525 5392 if ([[self _webView] _postsAcceleratedCompositingNotifications]) 5526 5393 [[NSNotificationCenter defaultCenter] postNotificationName:_WebViewDidStartAcceleratedCompositingNotification object:[self _webView] userInfo:nil]; 5527 5528 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050 5529 [viewLayer setSublayerTransform:CATransform3DMakeScale(1, -1, 1)]; // setGeometryFlipped: doesn't exist on Leopard. 5530 [self _updateLayerHostingViewPosition]; 5531 #elif __MAC_OS_X_VERSION_MIN_REQUIRED <= 1070 5394 5395 #if __MAC_OS_X_VERSION_MIN_REQUIRED <= 1070 5532 5396 // Do geometry flipping here, which flips all the compositing layers so they are top-down. 5533 5397 [viewLayer setGeometryFlipped:YES]; … … 5547 5411 } 5548 5412 } 5549 5550 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505551 // This method is necessary on Leopard to work around <rdar://problem/7067892>.5552 - (void)_updateLayerHostingViewPosition5553 {5554 if (!_private->layerHostingView)5555 return;5556 5557 const CGFloat maxHeight = 2048;5558 NSRect layerViewFrame = [self bounds];5559 5560 if (layerViewFrame.size.height > maxHeight) {5561 // Clamp the size of the view to <= maxHeight to avoid the bug.5562 layerViewFrame.size.height = maxHeight;5563 NSRect visibleRect = [[self enclosingScrollView] documentVisibleRect];5564 5565 // Place the top of the layer-hosting view at the top of the visibleRect.5566 CGFloat topOffset = NSMinY(visibleRect);5567 layerViewFrame.origin.y = topOffset;5568 5569 // Compensate for the moved view by adjusting the sublayer transform on the view's layer (using flipped coords).5570 CATransform3D flipTransform = CATransform3DMakeTranslation(0, topOffset, 0);5571 flipTransform = CATransform3DScale(flipTransform, 1, -1, 1);5572 [[_private->layerHostingView layer] setSublayerTransform:flipTransform];5573 }5574 5575 [_private->layerHostingView _updateLayerGeometryFromView]; // Workaround for <rdar://problem/7071636>5576 [_private->layerHostingView setFrame:layerViewFrame];5577 }5578 #endif // __MAC_OS_X_VERSION_MIN_REQUIRED == 10505579 5413 5580 5414 - (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx -
trunk/Source/WebKit/mac/WebView/WebHTMLViewInternal.h
r122400 r147447 67 67 #endif 68 68 69 #if USE(ACCELERATED_COMPOSITING) && __MAC_OS_X_VERSION_MIN_REQUIRED == 105070 - (void)_updateLayerHostingViewPosition;71 #endif72 73 69 @end -
trunk/Source/WebKit/mac/WebView/WebPDFDocumentExtras.mm
r135882 r147447 30 30 #import <wtf/RetainPtr.h> 31 31 #import <PDFKit/PDFDocument.h> 32 33 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 105034 @interface PDFDocument (Internal)35 - (CGPDFDocumentRef)documentRef;36 @end37 #endif38 32 39 33 static void appendValuesInPDFNameSubtreeToVector(CGPDFDictionaryRef subtree, Vector<CGPDFObjectRef>& values) -
trunk/Source/WebKit/mac/WebView/WebPreferences.mm
r146704 r147447 355 355 @"0", WebKitUseSiteSpecificSpoofingPreferenceKey, 356 356 [NSNumber numberWithInt:WebKitEditableLinkDefaultBehavior], WebKitEditableLinkBehaviorPreferenceKey, 357 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060358 357 [NSNumber numberWithInt:WebTextDirectionSubmenuAutomaticallyIncluded], 359 #else360 [NSNumber numberWithInt:WebTextDirectionSubmenuNeverIncluded],361 #endif362 358 WebKitTextDirectionSubmenuInclusionBehaviorPreferenceKey, 363 359 [NSNumber numberWithBool:NO], WebKitDOMPasteAllowedPreferenceKey, -
trunk/Source/WebKit/mac/WebView/WebResourceInternal.h
r122400 r147447 30 30 #import <wtf/PassRefPtr.h> 31 31 32 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 105033 #define MAIL_THREAD_WORKAROUND 134 #endif35 36 32 namespace WebCore { 37 33 class ArchiveResource; … … 42 38 - (WebCore::ArchiveResource*)_coreResource; 43 39 @end 44 45 #ifdef MAIL_THREAD_WORKAROUND46 47 @interface WebResource (WebMailThreadWorkaround)48 + (BOOL)_needMailThreadWorkaroundIfCalledOffMainThread;49 @end50 51 inline bool needMailThreadWorkaround()52 {53 return !pthread_main_np() && [WebResource _needMailThreadWorkaroundIfCalledOffMainThread];54 }55 56 #endif -
trunk/Source/WebKit/mac/WebView/WebScriptDebugDelegate.h
r122400 r147447 29 29 #import <Foundation/Foundation.h> 30 30 31 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 105032 typedef int WebSourceId;33 #else34 31 typedef intptr_t WebSourceId; 35 #endif36 32 37 33 @class WebView; -
trunk/Source/WebKit/mac/WebView/WebView.mm
r146907 r147447 441 441 @end 442 442 443 static void patchMailRemoveAttributesMethod();444 445 443 NSString *WebElementDOMNodeKey = @"WebElementDOMNode"; 446 444 NSString *WebElementFrameKey = @"WebElementFrame"; … … 503 501 static BOOL continuousSpellCheckingEnabled; 504 502 static BOOL grammarCheckingEnabled; 505 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060506 503 static BOOL automaticQuoteSubstitutionEnabled; 507 504 static BOOL automaticLinkDetectionEnabled; … … 509 506 static BOOL automaticTextReplacementEnabled; 510 507 static BOOL automaticSpellingCorrectionEnabled; 511 #endif512 508 513 509 @implementation WebView (AllWebViews) … … 620 616 } 621 617 622 static bool runningLeopardMail()623 {624 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050625 return applicationIsAppleMail();626 #endif627 return NO;628 }629 630 static bool coreVideoHas7228836Fix()631 {632 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050633 NSBundle* coreVideoFrameworkBundle = [NSBundle bundleWithPath:@"/System/Library/Frameworks/CoreVideo.framework"];634 double version = [[coreVideoFrameworkBundle objectForInfoDictionaryKey:(NSString *)kCFBundleVersionKey] doubleValue];635 return (version >= 48);636 #endif637 return true;638 }639 640 618 static bool shouldEnableLoadDeferring() 641 619 { … … 666 644 #endif 667 645 668 static NSString *leakMailQuirksUserScriptContents()669 {670 NSString *scriptPath = [[NSBundle bundleForClass:[WebView class]] pathForResource:@"MailQuirksUserScript" ofType:@"js"];671 NSStringEncoding encoding;672 return [[NSString alloc] initWithContentsOfFile:scriptPath usedEncoding:&encoding error:0];673 }674 675 - (void)_injectMailQuirksScript676 {677 static NSString *mailQuirksScriptContents = leakMailQuirksUserScriptContents();678 core(self)->group().addUserScriptToWorld(core([WebScriptWorld world]),679 mailQuirksScriptContents, KURL(), Vector<String>(), Vector<String>(), InjectAtDocumentEnd, InjectInAllFrames);680 }681 682 646 static bool needsOutlookQuirksScript() 683 647 { … … 748 712 WebKitInitializeStorageIfNecessary(); 749 713 WebKitInitializeApplicationCachePathIfNecessary(); 750 patchMailRemoveAttributesMethod();751 714 752 715 Settings::setDefaultMinDOMTimerInterval(0.004); … … 840 803 [self _scheduleGlibContextIterations]; 841 804 #endif 842 843 if (runningLeopardMail())844 [self _injectMailQuirksScript];845 805 } 846 806 … … 1510 1470 settings->setTreatsAnyTextCSSLinkAsStylesheet([self _needsLinkElementTextCSSQuirk]); 1511 1471 settings->setNeedsKeyboardEventDisambiguationQuirks([self _needsKeyboardEventDisambiguationQuirks]); 1512 settings->setNeedsLeopardMailQuirks(runningLeopardMail());1513 1472 settings->setNeedsSiteSpecificQuirks(_private->useSiteSpecificSpoofing); 1514 1473 settings->setWebArchiveDebugModeEnabled([preferences webArchiveDebugModeEnabled]); … … 1522 1481 // FIXME: Enabling accelerated compositing when WebGL is enabled causes tests to fail on Leopard which expect HW compositing to be disabled. 1523 1482 // Until we fix that, I will comment out the test (CFM) 1524 settings->setAcceleratedCompositingEnabled((coreVideoHas7228836Fix() || [preferences webGLEnabled] || 1525 [preferences accelerated2dCanvasEnabled]) && [preferences acceleratedCompositingEnabled]); 1483 settings->setAcceleratedCompositingEnabled([preferences acceleratedCompositingEnabled]); 1526 1484 settings->setAcceleratedDrawingEnabled([preferences acceleratedDrawingEnabled]); 1527 1485 settings->setCanvasUsesAcceleratedDrawing([preferences canvasUsesAcceleratedDrawing]); … … 1547 1505 settings->setFullScreenEnabled([preferences fullScreenEnabled]); 1548 1506 #endif 1549 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10601550 // Asynchronous spell checking API is available for 10.6 or later.1551 1507 settings->setAsynchronousSpellCheckingEnabled([preferences asynchronousSpellCheckingEnabled]); 1552 #endif1553 1508 settings->setMemoryInfoEnabled([preferences memoryInfoEnabled]); 1554 1509 settings->setHyperlinkAuditingEnabled([preferences hyperlinkAuditingEnabled]); … … 3185 3140 Font::setDefaultTypesettingFeatures([defaults boolForKey:WebKitKerningAndLigaturesEnabledByDefaultDefaultsKey] ? Kerning | Ligatures : 0); 3186 3141 3187 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10603188 3142 automaticQuoteSubstitutionEnabled = [defaults boolForKey:WebAutomaticQuoteSubstitutionEnabled]; 3189 3143 automaticLinkDetectionEnabled = [defaults boolForKey:WebAutomaticLinkDetectionEnabled]; … … 3191 3145 automaticTextReplacementEnabled = [defaults boolForKey:WebAutomaticTextReplacementEnabled]; 3192 3146 automaticSpellingCorrectionEnabled = [defaults boolForKey:WebAutomaticSpellingCorrectionEnabled]; 3193 #endif3194 3147 3195 3148 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070 … … 3399 3352 if ([bundleIdentifier _webkit_hasCaseInsensitivePrefix:@"com.apple.Automator."]) 3400 3353 return true; 3401 3402 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10503403 // Mail.3404 if ([bundleIdentifier _webkit_isCaseInsensitiveEqualToString:@"com.apple.Mail"])3405 return true;3406 #endif3407 3354 3408 3355 return false; … … 4727 4674 } 4728 4675 return YES; 4729 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10604730 4676 } else if (action == @selector(toggleAutomaticQuoteSubstitution:)) { 4731 4677 BOOL checkMark = [self isAutomaticQuoteSubstitutionEnabled]; … … 4763 4709 } 4764 4710 return YES; 4765 #endif4766 4711 } 4767 4712 FOR_EACH_RESPONDER_SELECTOR(VALIDATE) … … 5563 5508 grammarCheckingEnabled = flag; 5564 5509 [[NSUserDefaults standardUserDefaults] setBool:grammarCheckingEnabled forKey:WebGrammarCheckingEnabled]; 5565 5566 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10605567 5510 [[NSSpellChecker sharedSpellChecker] updatePanels]; 5568 #else 5569 NSSpellChecker *spellChecker = [NSSpellChecker sharedSpellChecker]; 5570 if ([spellChecker respondsToSelector:@selector(_updateGrammar)]) 5571 [spellChecker performSelector:@selector(_updateGrammar)]; 5572 #endif 5573 5511 5574 5512 // We call _preflightSpellChecker when turning continuous spell checking on, but we don't need to do that here 5575 5513 // because grammar checking only occurs on code paths that already preflight spell checking appropriately. … … 5591 5529 - (BOOL)isAutomaticQuoteSubstitutionEnabled 5592 5530 { 5593 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505594 return NO;5595 #else5596 5531 return automaticQuoteSubstitutionEnabled; 5597 #endif5598 5532 } 5599 5533 5600 5534 - (BOOL)isAutomaticLinkDetectionEnabled 5601 5535 { 5602 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505603 return NO;5604 #else5605 5536 return automaticLinkDetectionEnabled; 5606 #endif5607 5537 } 5608 5538 5609 5539 - (BOOL)isAutomaticDashSubstitutionEnabled 5610 5540 { 5611 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505612 return NO;5613 #else5614 5541 return automaticDashSubstitutionEnabled; 5615 #endif5616 5542 } 5617 5543 5618 5544 - (BOOL)isAutomaticTextReplacementEnabled 5619 5545 { 5620 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505621 return NO;5622 #else5623 5546 return automaticTextReplacementEnabled; 5624 #endif5625 5547 } 5626 5548 5627 5549 - (BOOL)isAutomaticSpellingCorrectionEnabled 5628 5550 { 5629 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10505630 return NO;5631 #else5632 5551 return automaticSpellingCorrectionEnabled; 5633 #endif 5634 } 5635 5636 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060 5552 } 5637 5553 5638 5554 - (void)setAutomaticQuoteSubstitutionEnabled:(BOOL)flag … … 5705 5621 [self setAutomaticSpellingCorrectionEnabled:![self isAutomaticSpellingCorrectionEnabled]]; 5706 5622 } 5707 5708 #endif5709 5623 5710 5624 @end … … 6221 6135 return; 6222 6136 6223 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 10606224 6137 [[NSWorkspace sharedWorkspace] showSearchResultsForQueryString:selectedString]; 6225 #else6226 (void)HISearchWindowShow((CFStringRef)selectedString, kNilOptions);6227 #endif6228 6138 } 6229 6139 … … 6740 6650 memoryPressureHandler().install(); 6741 6651 } 6742 6743 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10506744 6745 static IMP originalRecursivelyRemoveMailAttributesImp;6746 6747 static id objectElementDataAttribute(DOMHTMLObjectElement *self, SEL)6748 {6749 return [self getAttribute:@"data"];6750 }6751 6752 static void recursivelyRemoveMailAttributes(DOMNode *self, SEL selector, BOOL a, BOOL b, BOOL c)6753 {6754 // While inside this Mail function, change the behavior of -[DOMHTMLObjectElement data] back to what it used to be6755 // before we fixed a bug in it (see http://trac.webkit.org/changeset/30044 for that change).6756 6757 // It's a little bit strange to patch a method defined by WebKit, but it helps keep this workaround self-contained.6758 6759 Method methodToPatch = class_getInstanceMethod(objc_getRequiredClass("DOMHTMLObjectElement"), @selector(data));6760 IMP originalDataImp = method_setImplementation(methodToPatch, reinterpret_cast<IMP>(objectElementDataAttribute));6761 originalRecursivelyRemoveMailAttributesImp(self, selector, a, b, c);6762 method_setImplementation(methodToPatch, originalDataImp);6763 }6764 6765 #endif6766 6767 static void patchMailRemoveAttributesMethod()6768 {6769 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10506770 if (!WKAppVersionCheckLessThan(@"com.apple.mail", -1, 4.0))6771 return;6772 Method methodToPatch = class_getInstanceMethod(objc_getRequiredClass("DOMNode"), @selector(recursivelyRemoveMailAttributes:convertObjectsToImages:convertEditableElements:));6773 if (!methodToPatch)6774 return;6775 originalRecursivelyRemoveMailAttributesImp = method_setImplementation(methodToPatch, reinterpret_cast<IMP>(recursivelyRemoveMailAttributes));6776 #endif6777 } -
trunk/Source/WebKit/mac/WebView/WebViewPrivate.h
r144547 r147447 680 680 - (BOOL)isAutomaticTextReplacementEnabled; 681 681 - (BOOL)isAutomaticSpellingCorrectionEnabled; 682 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060683 682 - (void)setAutomaticQuoteSubstitutionEnabled:(BOOL)flag; 684 683 - (void)toggleAutomaticQuoteSubstitution:(id)sender; … … 691 690 - (void)setAutomaticSpellingCorrectionEnabled:(BOOL)flag; 692 691 - (void)toggleAutomaticSpellingCorrection:(id)sender; 693 #endif694 692 @end 695 693
Note:
See TracChangeset
for help on using the changeset viewer.