Changeset 165080 in webkit
- Timestamp:
- Mar 4, 2014, 2:48:30 PM (12 years ago)
- Location:
- trunk/Source
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r165079 r165080 1 2014-03-04 Simon Fraser <simon.fraser@apple.com> 2 3 Allow iOS DumpRenderTree crashes to show application-specific information 4 https://bugs.webkit.org/show_bug.cgi?id=129705 5 6 Reviewed by David Kilzer. 7 8 Make the WKSI function SetCrashReportApplicationSpecificInformation available 9 in iOS simulator builds. 10 11 * WebCore.exp.in: 12 * platform/ios/WebCoreSystemInterfaceIOS.mm: 13 * platform/mac/WebCoreSystemInterface.h: 14 1 15 2014-03-04 Andreas Kling <akling@apple.com> 2 16 -
trunk/Source/WebCore/WebCore.exp.in
r165031 r165080 2284 2284 _wkRecommendedScrollerStyle 2285 2285 _wkSetCGFontRenderingMode 2286 _wkSetCrashReportApplicationSpecificInformation2287 2286 _wkSetDragImage 2288 2287 _wkSetMetadataURL … … 2685 2684 #endif 2686 2685 2686 #if PLATFORM(MAC) || PLATFORM(IOS_SIMULATOR) 2687 _wkSetCrashReportApplicationSpecificInformation 2688 #endif 2689 2687 2690 #if ENABLE(3D_RENDERING) 2688 2691 _WebCoreHas3DRendering -
trunk/Source/WebCore/platform/ios/WebCoreSystemInterfaceIOS.mm
r162166 r165080 99 99 #endif // !PLATFORM(IOS_SIMULATOR) 100 100 101 #if PLATFORM(IOS_SIMULATOR) 102 void (*wkSetCrashReportApplicationSpecificInformation)(CFStringRef); 103 #endif 104 101 105 CFURLStorageSessionRef (*wkCreatePrivateStorageSession)(CFStringRef); 102 106 NSURLRequest* (*wkCopyRequestWithStorageSession)(CFURLStorageSessionRef, NSURLRequest*); -
trunk/Source/WebCore/platform/mac/WebCoreSystemInterface.h
r163657 r165080 267 267 #endif 268 268 269 #if PLATFORM(MAC) || PLATFORM(IOS_SIMULATOR) 270 extern void (*wkSetCrashReportApplicationSpecificInformation)(CFStringRef); 271 #endif 272 269 273 #if !PLATFORM(IOS) 270 274 extern int (*wkRecommendedScrollerStyle)(void); … … 273 277 274 278 extern CFStringRef (*wkCopyDefaultSearchProviderDisplayName)(void); 275 extern void (*wkSetCrashReportApplicationSpecificInformation)(CFStringRef);276 279 277 280 extern NSURL *(*wkAVAssetResolvedURL)(AVAsset*); -
trunk/Source/WebKit/mac/ChangeLog
r165074 r165080 1 2014-03-04 Simon Fraser <simon.fraser@apple.com> 2 3 Allow iOS DumpRenderTree crashes to show application-specific information 4 https://bugs.webkit.org/show_bug.cgi?id=129705 5 6 Reviewed by David Kilzer. 7 8 Make the WKSI function SetCrashReportApplicationSpecificInformation available 9 in iOS simulator builds. 10 11 * WebCoreSupport/WebSystemInterface.mm: 12 (InitWebCoreSystemInterface): 13 1 14 2014-03-04 Mark Hahnenberg <mhahnenberg@apple.com> 2 15 -
trunk/Source/WebKit/mac/WebCoreSupport/WebSystemInterface.mm
r163731 r165080 153 153 INIT(CreateCTTypesetterWithUniCharProviderAndOptions); 154 154 INIT(CTRunGetInitialAdvance); 155 #if PLATFORM(MAC) || PLATFORM(IOS_SIMULATOR) 156 INIT(SetCrashReportApplicationSpecificInformation); 157 #endif 155 158 #if !PLATFORM(IOS) 156 159 INIT(RecommendedScrollerStyle); 157 160 INIT(ExecutableWasLinkedOnOrBeforeSnowLeopard); 158 INIT(SetCrashReportApplicationSpecificInformation);159 161 INIT(CopyDefaultSearchProviderDisplayName); 160 162 INIT(AVAssetResolvedURL); -
trunk/Source/WebKit2/ChangeLog
r165074 r165080 1 2014-03-04 Simon Fraser <simon.fraser@apple.com> 2 3 Allow iOS DumpRenderTree crashes to show application-specific information 4 https://bugs.webkit.org/show_bug.cgi?id=129705 5 6 Reviewed by David Kilzer. 7 8 Make the WKSI function SetCrashReportApplicationSpecificInformation available 9 in iOS simulator builds. 10 11 * WebProcess/WebCoreSupport/mac/WebSystemInterface.mm: 12 (InitWebCoreSystemInterface): 13 1 14 2014-03-04 Mark Hahnenberg <mhahnenberg@apple.com> 2 15 -
trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm
r164192 r165080 144 144 INIT(CreateCTTypesetterWithUniCharProviderAndOptions); 145 145 INIT(CTRunGetInitialAdvance); 146 #if PLATFORM(MAC) || PLATFORM(IOS_SIMULATOR) 147 INIT(SetCrashReportApplicationSpecificInformation); 148 #endif 146 149 #if !PLATFORM(IOS) 147 150 INIT(RecommendedScrollerStyle); 148 151 INIT(ExecutableWasLinkedOnOrBeforeSnowLeopard); 149 152 INIT(CopyDefaultSearchProviderDisplayName); 150 INIT(SetCrashReportApplicationSpecificInformation);151 153 INIT(AVAssetResolvedURL); 152 154 INIT(Cursor);
Note:
See TracChangeset
for help on using the changeset viewer.