Changeset 243016 in webkit
- Timestamp:
- Mar 15, 2019, 3:18:21 PM (6 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r243015 r243016 1 2019-03-15 Alex Christensen <achristensen@webkit.org> 2 3 _WKDownload should conform to NSCopying protocol 4 https://bugs.webkit.org/show_bug.cgi?id=195718 5 6 Reviewed by Tim Horton. 7 8 This will allow us to use it as keys in NSMutableDictionaries, which Safari already kind of does. 9 10 * UIProcess/API/Cocoa/_WKDownload.h: 11 * UIProcess/API/Cocoa/_WKDownload.mm: 12 (-[_WKDownload copyWithZone:]): 13 1 14 2019-03-15 Dean Jackson <dino@apple.com> 2 15 -
trunk/Source/WebKit/UIProcess/API/Cocoa/_WKDownload.h
r242339 r243016 31 31 32 32 WK_CLASS_AVAILABLE(macosx(10.10), ios(8.0)) 33 @interface _WKDownload : NSObject 33 @interface _WKDownload : NSObject <NSCopying> 34 34 35 35 - (void)cancel; -
trunk/Source/WebKit/UIProcess/API/Cocoa/_WKDownload.mm
r242339 r243016 84 84 } 85 85 86 - (id)copyWithZone:(NSZone *)zone 87 { 88 return [self retain]; 89 } 90 86 91 #pragma mark WKObject protocol implementation 87 92
Note:
See TracChangeset
for help on using the changeset viewer.