Changeset 284728 in webkit
- Timestamp:
- Oct 22, 2021, 4:51:51 PM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 1 deleted
- 42 edited
-
WebCore/ChangeLog (modified) (1 diff)
-
WebCore/platform/ios/WebItemProviderPasteboard.h (modified) (2 diffs)
-
WebCore/platform/ios/wak/WAKAppKitStubs.h (modified) (1 diff)
-
WebCore/platform/ios/wak/WAKResponder.h (modified) (1 diff)
-
WebCore/platform/ios/wak/WAKView.h (modified) (1 diff)
-
WebCore/platform/ios/wak/WAKWindow.h (modified) (1 diff)
-
WebCore/platform/ios/wak/WKContentObservation.h (modified) (1 diff)
-
WebCore/platform/ios/wak/WebCoreThreadMessage.h (modified) (1 diff)
-
WebKitLegacy/ChangeLog (modified) (1 diff)
-
WebKitLegacy/Modules (deleted)
-
WebKitLegacy/WebKitLegacy.xcodeproj/project.pbxproj (modified) (3 diffs)
-
WebKitLegacy/ios/ChangeLog (modified) (1 diff)
-
WebKitLegacy/ios/Misc/WebGeolocationCoreLocationProvider.h (modified) (2 diffs)
-
WebKitLegacy/ios/WebCoreSupport/WebFixedPositionContent.h (modified) (1 diff)
-
WebKitLegacy/mac/ChangeLog (modified) (1 diff)
-
WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig (modified) (1 diff)
-
WebKitLegacy/mac/DOM/DOMEventListener.h (modified) (1 diff)
-
WebKitLegacy/mac/DOM/DOMEventTarget.h (modified) (1 diff)
-
WebKitLegacy/mac/DOM/DOMNodeFilter.h (modified) (1 diff)
-
WebKitLegacy/mac/DOM/DOMXPathNSResolver.h (modified) (1 diff)
-
WebKitLegacy/mac/DOM/WebDOMOperationsPrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/History/WebHistoryItemPrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/Misc/NSURLDownloadSPI.h (modified) (1 diff)
-
WebKitLegacy/mac/Misc/WebCache.h (modified) (1 diff)
-
WebKitLegacy/mac/Misc/WebDownload.h (modified) (1 diff)
-
WebKitLegacy/mac/Misc/WebKitErrorsPrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/Misc/WebLocalizableStrings.h (modified) (1 diff)
-
WebKitLegacy/mac/Misc/WebUserContentURLPattern.h (modified) (1 diff)
-
WebKitLegacy/mac/Plugins/Hosted/WebKitPluginHostTypes.h (modified) (1 diff)
-
WebKitLegacy/mac/Plugins/WebPlugin.h (modified) (1 diff)
-
WebKitLegacy/mac/Plugins/WebPluginContainer.h (modified) (1 diff)
-
WebKitLegacy/mac/Storage/WebDatabaseManagerPrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/Storage/WebDatabaseQuotaManager.h (modified) (1 diff)
-
WebKitLegacy/mac/Storage/WebStorageManagerPrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/WebCoreSupport/WebCreateFragmentInternal.h (modified) (2 diffs)
-
WebKitLegacy/mac/WebCoreSupport/WebSecurityOriginPrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebDeviceOrientation.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebDeviceOrientationProvider.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebDeviceOrientationProviderMock.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebEditingDelegatePrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebFormDelegatePrivate.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebGeolocationPosition.h (modified) (1 diff)
-
WebKitLegacy/mac/WebView/WebResourceLoadDelegatePrivate.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r284725 r284728 1 2021-10-22 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, reverting r284713. 4 https://bugs.webkit.org/show_bug.cgi?id=232187 5 6 Broke some Apple internal builds 7 8 Reverted changeset: 9 10 "Add a module map file for PrivateFrameworks/WebKitLegacy" 11 https://bugs.webkit.org/show_bug.cgi?id=230735 12 https://commits.webkit.org/r284713 13 1 14 2021-10-22 Joonghun Park <pjh0718@gmail.com> 2 15 -
trunk/Source/WebCore/platform/ios/WebItemProviderPasteboard.h
r284713 r284728 24 24 */ 25 25 26 #import <CoreGraphics/CoreGraphics.h>27 28 26 #if TARGET_OS_IPHONE 29 27 #import <WebCore/AbstractPasteboard.h> … … 31 29 32 30 #if TARGET_OS_IOS 31 32 struct CGSize; 33 33 34 34 typedef NS_ENUM(NSInteger, WebPreferredPresentationStyle) { -
trunk/Source/WebCore/platform/ios/wak/WAKAppKitStubs.h
r284713 r284728 27 27 #define WAKAppKitStubs_h 28 28 29 #if TARGET_OS_IPHONE 30 31 #import <CoreGraphics/CoreGraphics.h> 29 32 #import <Foundation/Foundation.h> 30 31 #if TARGET_OS_IPHONE32 33 #import <CoreGraphics/CoreGraphics.h>34 33 35 34 #ifndef NSClipView -
trunk/Source/WebCore/platform/ios/wak/WAKResponder.h
r284713 r284728 27 27 #define WAKResponder_h 28 28 29 #import <Foundation/Foundation.h>30 31 29 #if TARGET_OS_IPHONE 32 30 33 #import <WebCore/WKTypes.h> 31 #import "WKTypes.h" 32 #import <Foundation/Foundation.h> 34 33 35 34 @class WebEvent; -
trunk/Source/WebCore/platform/ios/wak/WAKView.h
r284713 r284728 27 27 #define WAKView_h 28 28 29 #import <Foundation/Foundation.h>30 31 29 #if TARGET_OS_IPHONE 32 30 31 #import "WAKAppKitStubs.h" 32 #import "WAKResponder.h" 33 #import <Foundation/Foundation.h> 33 34 #import <CoreGraphics/CoreGraphics.h> 34 #import <WebCore/WAKAppKitStubs.h>35 #import <WebCore/WAKResponder.h>36 35 37 36 extern NSString *WAKViewFrameSizeDidChangeNotification; -
trunk/Source/WebCore/platform/ios/wak/WAKWindow.h
r284713 r284728 26 26 #pragma once 27 27 28 #import <Foundation/Foundation.h>29 30 28 #if TARGET_OS_IPHONE 31 29 30 #import "WAKAppKitStubs.h" 31 #import "WAKView.h" 32 #import "WKContentObservation.h" 32 33 #import <CoreGraphics/CoreGraphics.h> 33 #import <WebCore/WAKAppKitStubs.h> 34 #import <WebCore/WAKView.h> 35 #import <WebCore/WKContentObservation.h> 34 #import <Foundation/Foundation.h> 36 35 37 36 @class CALayer; -
trunk/Source/WebCore/platform/ios/wak/WKContentObservation.h
r284713 r284728 27 27 #define WKContentObservation_h 28 28 29 #include <TargetConditionals.h>30 31 29 #if TARGET_OS_IPHONE 32 30 -
trunk/Source/WebCore/platform/ios/wak/WebCoreThreadMessage.h
r284713 r284728 32 32 33 33 #ifdef __OBJC__ 34 #import <WebCore/WebCoreThread.h>34 #import "WebCoreThread.h" 35 35 #endif // __OBJC__ 36 36 -
trunk/Source/WebKitLegacy/ChangeLog
r284713 r284728 1 2021-10-22 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, reverting r284713. 4 https://bugs.webkit.org/show_bug.cgi?id=232187 5 6 Broke some Apple internal builds 7 8 Reverted changeset: 9 10 "Add a module map file for PrivateFrameworks/WebKitLegacy" 11 https://bugs.webkit.org/show_bug.cgi?id=230735 12 https://commits.webkit.org/r284713 13 1 14 2021-10-22 Ian Anderson <iana@apple.com> 2 15 -
trunk/Source/WebKitLegacy/WebKitLegacy.xcodeproj/project.pbxproj
r284713 r284728 1037 1037 84AE905F062DE6A80075BBF9 /* WebDOMOperationsPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = WebDOMOperationsPrivate.h; sourceTree = "<group>"; tabWidth = 8; usesTabs = 0; }; 1038 1038 84CA5F7E042685E800CA2ACA /* WebKitErrorsPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = WebKitErrorsPrivate.h; sourceTree = "<group>"; tabWidth = 8; usesTabs = 0; }; 1039 84E2901126FC3D99005139F2 /* WebKitLegacy.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = WebKitLegacy.modulemap; sourceTree = "<group>"; };1040 84E2901226FC3DA4005139F2 /* WebKitLegacy.private.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = WebKitLegacy.private.modulemap; sourceTree = "<group>"; };1041 1039 930D02BB06275F640076701E /* WebViewInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = WebViewInternal.h; sourceTree = "<group>"; tabWidth = 8; usesTabs = 0; }; 1042 1040 930D02BD06275F710076701E /* WebFrameInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = WebFrameInternal.h; sourceTree = "<group>"; tabWidth = 8; usesTabs = 0; }; … … 1647 1645 089C1665FE841158C02AAC07 /* Resources */, 1648 1646 7C02320E251B8E3A00BA7BB6 /* Scripts */, 1649 534F75362578AAE8005BE7D8 /* Modules */,1650 1647 0867D69AFE84028FC02AAC07 /* Frameworks and Libraries */, 1651 1648 034768DFFF38A50411DB9C8B /* Products */, … … 1922 1919 ); 1923 1920 name = PDF; 1924 sourceTree = "<group>";1925 };1926 534F75362578AAE8005BE7D8 /* Modules */ = {1927 isa = PBXGroup;1928 children = (1929 84E2901126FC3D99005139F2 /* WebKitLegacy.modulemap */,1930 84E2901226FC3DA4005139F2 /* WebKitLegacy.private.modulemap */,1931 );1932 path = Modules;1933 1921 sourceTree = "<group>"; 1934 1922 }; -
trunk/Source/WebKitLegacy/ios/ChangeLog
r284713 r284728 1 2021-10-22 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, reverting r284713. 4 https://bugs.webkit.org/show_bug.cgi?id=232187 5 6 Broke some Apple internal builds 7 8 Reverted changeset: 9 10 "Add a module map file for PrivateFrameworks/WebKitLegacy" 11 https://bugs.webkit.org/show_bug.cgi?id=230735 12 https://commits.webkit.org/r284713 13 1 14 2021-10-22 Ian Anderson <iana@apple.com> 2 15 -
trunk/Source/WebKitLegacy/ios/Misc/WebGeolocationCoreLocationProvider.h
r284713 r284728 24 24 */ 25 25 26 #i f defined(__cplusplus)26 #import <Foundation/NSObject.h> 27 27 28 #import <Foundation/Foundation.h> 28 @class CLLocationManager; 29 @class NSString; 29 30 30 31 namespace WebCore { … … 59 60 - (void)setEnableHighAccuracy:(BOOL)flag; 60 61 @end 61 62 #endif -
trunk/Source/WebKitLegacy/ios/WebCoreSupport/WebFixedPositionContent.h
r284713 r284728 24 24 */ 25 25 26 #import <CoreGraphics/CoreGraphics.h>27 26 #import <Foundation/Foundation.h> 28 27 -
trunk/Source/WebKitLegacy/mac/ChangeLog
r284713 r284728 1 2021-10-22 Commit Queue <commit-queue@webkit.org> 2 3 Unreviewed, reverting r284713. 4 https://bugs.webkit.org/show_bug.cgi?id=232187 5 6 Broke some Apple internal builds 7 8 Reverted changeset: 9 10 "Add a module map file for PrivateFrameworks/WebKitLegacy" 11 https://bugs.webkit.org/show_bug.cgi?id=230735 12 https://commits.webkit.org/r284713 13 1 14 2021-10-22 Ian Anderson <iana@apple.com> 2 15 -
trunk/Source/WebKitLegacy/mac/Configurations/WebKitLegacy.xcconfig
r284713 r284728 157 157 OTHER_TAPI_FLAGS[sdk=iphone*] = -x objective-c++ -std=gnu++1z -fno-rtti $(WK_CFLAGS_BUILD_FOR_TESTING_$(WK_BUILD_FOR_TESTING)) -DRELEASE_WITHOUT_OPTIMIZATIONS -exclude-private-header $(BUILT_PRODUCTS_DIR)/$(PRIVATE_HEADERS_FOLDER_PATH)/NSURLDownloadSPI.h -extra-private-header $(SOURCE_ROOT)/mac/TestingFunctions.h; 158 158 TAPI_VERIFY_MODE[sdk=iphone*] = Pedantic; 159 160 DEFINES_MODULE = $(DEFINES_MODULE_COCOA_TOUCH_$(WK_IS_COCOA_TOUCH));161 DEFINES_MODULE_COCOA_TOUCH_YES = YES;162 163 CLANG_MODULES_ENABLE_VERIFIER_TOOL = $(CLANG_MODULES_ENABLE_VERIFIER_TOOL_COCOA_TOUCH_$(WK_IS_COCOA_TOUCH)_$(USE_INTERNAL_SDK));164 CLANG_MODULES_ENABLE_VERIFIER_TOOL_COCOA_TOUCH_YES_YES = YES;165 166 MODULEMAP_FILE = $(MODULEMAP_FILE_COCOA_TOUCH_$(WK_IS_COCOA_TOUCH));167 MODULEMAP_FILE_COCOA_TOUCH_YES = $(SRCROOT)/Modules/WebKitLegacy.modulemap;168 169 MODULEMAP_PRIVATE_FILE = $(MODULEMAP_PRIVATE_FILE_COCOA_TOUCH_$(WK_IS_COCOA_TOUCH));170 MODULEMAP_PRIVATE_FILE_COCOA_TOUCH_YES = $(SRCROOT)/Modules/WebKitLegacy.private.modulemap; -
trunk/Source/WebKitLegacy/mac/DOM/DOMEventListener.h
r284713 r284728 25 25 26 26 #import <WebKitLegacy/WebKitAvailability.h> 27 #import <objc/NSObject.h>28 27 29 28 @class DOMEvent; -
trunk/Source/WebKitLegacy/mac/DOM/DOMEventTarget.h
r284713 r284728 24 24 */ 25 25 26 #import <Foundation/Foundation.h>27 26 #import <WebKitLegacy/WebKitAvailability.h> 28 27 -
trunk/Source/WebKitLegacy/mac/DOM/DOMNodeFilter.h
r284713 r284728 25 25 26 26 #import <WebKitLegacy/WebKitAvailability.h> 27 #import <objc/NSObject.h>28 27 29 28 @class DOMNode; -
trunk/Source/WebKitLegacy/mac/DOM/DOMXPathNSResolver.h
r284713 r284728 25 25 26 26 #import <WebKitLegacy/WebKitAvailability.h> 27 #import <objc/NSObject.h>28 27 29 28 @class NSString; -
trunk/Source/WebKitLegacy/mac/DOM/WebDOMOperationsPrivate.h
r284713 r284728 27 27 */ 28 28 29 #import <Foundation/Foundation.h>30 29 #import <WebKitLegacy/WebDOMOperations.h> 31 30 #import <JavaScriptCore/JSBase.h> -
trunk/Source/WebKitLegacy/mac/History/WebHistoryItemPrivate.h
r284713 r284728 27 27 */ 28 28 29 #import <CoreGraphics/CoreGraphics.h>30 29 #import <WebKitLegacy/WebHistoryItem.h> 31 30 -
trunk/Source/WebKitLegacy/mac/Misc/NSURLDownloadSPI.h
r284713 r284728 24 24 */ 25 25 26 #import <Foundation/Foundation.h>27 #import <WebKitLegacy/WebKitAvailability.h>28 29 #if defined(TARGET_OS_MACCATALYST) && TARGET_OS_MACCATALYST30 #import <CFNetwork/CFNSURLConnection.h>31 #elif !TARGET_OS_IPHONE || (defined(USE_APPLE_INTERNAL_SDK) && USE_APPLE_INTERNAL_SDK)32 #import <Foundation/NSURLDownload.h>33 #else34 35 26 @interface NSURLDownload : NSObject 36 27 @end 37 28 38 29 @protocol NSURLDownloadDelegate; 39 40 #endif -
trunk/Source/WebKitLegacy/mac/Misc/WebCache.h
r284713 r284728 24 24 */ 25 25 26 #import <CoreGraphics/CoreGraphics.h>27 #import <Foundation/Foundation.h>28 29 26 #if TARGET_OS_IPHONE 30 27 @class WebFrame; -
trunk/Source/WebKitLegacy/mac/Misc/WebDownload.h
r284713 r284728 27 27 */ 28 28 29 #import <Foundation/Foundation.h> 30 #import <WebKitLegacy/WebKitAvailability.h> 31 29 32 #ifndef WebDownload_h 30 33 #define WebDownload_h 31 34 32 #import <Foundation/Foundation.h> 33 #import <WebKitLegacy/WebKitAvailability.h> 34 35 #if defined(TARGET_OS_MACCATALYST) && TARGET_OS_MACCATALYST 35 #if (defined TARGET_OS_MACCATALYST && TARGET_OS_MACCATALYST) 36 36 #import <CFNetwork/CFNSURLConnection.h> 37 #elif !TARGET_OS_IPHONE || (defined (USE_APPLE_INTERNAL_SDK)&& USE_APPLE_INTERNAL_SDK)37 #elif !TARGET_OS_IPHONE || (defined USE_APPLE_INTERNAL_SDK && USE_APPLE_INTERNAL_SDK) 38 38 #import <Foundation/NSURLDownload.h> 39 39 #else -
trunk/Source/WebKitLegacy/mac/Misc/WebKitErrorsPrivate.h
r284713 r284728 27 27 */ 28 28 29 #import <Foundation/Foundation.h>30 29 #import <WebKitLegacy/WebKitErrors.h> 31 30 -
trunk/Source/WebKitLegacy/mac/Misc/WebLocalizableStrings.h
r284713 r284728 30 30 31 31 #ifdef __OBJC__ 32 #import <Foundation/Foundation.h> 32 @class NSBundle; 33 33 typedef NSString *WebLocalizedStringType; 34 34 #else -
trunk/Source/WebKitLegacy/mac/Misc/WebUserContentURLPattern.h
r284713 r284728 23 23 */ 24 24 25 #import <Foundation/Foundation.h>26 27 25 @class WebUserContentURLPatternPrivate; 28 26 -
trunk/Source/WebKitLegacy/mac/Plugins/Hosted/WebKitPluginHostTypes.h
r284713 r284728 26 26 #ifndef WebKitPluginHostTypes_h 27 27 #define WebKitPluginHostTypes_h 28 29 #include <stdint.h>30 28 31 29 typedef uint8_t* plist_bytes_t; -
trunk/Source/WebKitLegacy/mac/Plugins/WebPlugin.h
r284713 r284728 27 27 */ 28 28 29 #import <CoreGraphics/CoreGraphics.h>30 29 #import <Foundation/Foundation.h> 31 30 #import <WebKitLegacy/WebKitAvailability.h> -
trunk/Source/WebKitLegacy/mac/Plugins/WebPluginContainer.h
r284713 r284728 31 31 #if !TARGET_OS_IPHONE 32 32 #import <AppKit/AppKit.h> 33 @class WebFrame; 33 34 #endif 34 35 @class WebFrame;36 35 37 36 /*! -
trunk/Source/WebKitLegacy/mac/Storage/WebDatabaseManagerPrivate.h
r284713 r284728 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 #import <Foundation/Foundation.h>30 28 31 29 extern NSString *WebDatabaseDirectoryDefaultsKey; -
trunk/Source/WebKitLegacy/mac/Storage/WebDatabaseQuotaManager.h
r284713 r284728 24 24 */ 25 25 26 #import <WebKitLegacy/WebQuotaManager.h> 27 #import <objc/NSObject.h> 26 #import "WebQuotaManager.h" 28 27 29 28 @interface WebDatabaseQuotaManager : NSObject <WebQuotaManager> { -
trunk/Source/WebKitLegacy/mac/Storage/WebStorageManagerPrivate.h
r284713 r284728 24 24 */ 25 25 26 #import <Foundation/Foundation.h>27 28 26 extern NSString * const WebStorageDirectoryDefaultsKey; 29 27 extern NSString * const WebStorageDidModifyOriginNotification; -
trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebCreateFragmentInternal.h
r284713 r284728 26 26 #pragma once 27 27 28 #if defined(__cplusplus)29 30 #import <Foundation/Foundation.h>31 32 28 namespace WebCore { 33 29 class Document; … … 36 32 37 33 extern "C" void _WebCreateFragment(WebCore::Document&, NSAttributedString *, WebCore::FragmentAndResources&); 38 39 #endif -
trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebSecurityOriginPrivate.h
r284713 r284728 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 #import <Foundation/Foundation.h>30 28 31 29 struct WebSecurityOriginPrivate; -
trunk/Source/WebKitLegacy/mac/WebView/WebDeviceOrientation.h
r284713 r284728 24 24 */ 25 25 26 #import <objc/NSObject.h>27 #import <stdbool.h>28 26 29 27 @class WebDeviceOrientationInternal; -
trunk/Source/WebKitLegacy/mac/WebView/WebDeviceOrientationProvider.h
r284713 r284728 24 24 */ 25 25 26 #import <objc/NSObject.h>27 28 26 @class WebDeviceOrientation; 29 27 -
trunk/Source/WebKitLegacy/mac/WebView/WebDeviceOrientationProviderMock.h
r284713 r284728 24 24 */ 25 25 26 #import <WebKitLegacy/WebDeviceOrientationProvider.h> 27 #import <objc/NSObject.h> 26 #import "WebDeviceOrientationProvider.h" 28 27 29 28 @class WebDeviceOrientationProviderMockInternal; -
trunk/Source/WebKitLegacy/mac/WebView/WebEditingDelegatePrivate.h
r284713 r284728 29 29 #import <WebKitLegacy/WebEditingDelegate.h> 30 30 31 #if TARGET_OS_IPHONE32 @class DOMDocumentFragment;33 #endif34 31 @class DOMHTMLElement; 35 32 -
trunk/Source/WebKitLegacy/mac/WebView/WebFormDelegatePrivate.h
r284713 r284728 27 27 */ 28 28 29 #import <WebKitLegacy/WebFormDelegate.h>29 #import "WebFormDelegate.h" 30 30 31 31 @interface WebFormDelegate (WebPrivate) -
trunk/Source/WebKitLegacy/mac/WebView/WebGeolocationPosition.h
r284713 r284728 24 24 */ 25 25 26 #import <objc/NSObject.h>27 28 26 @class WebGeolocationPositionInternal; 29 27 -
trunk/Source/WebKitLegacy/mac/WebView/WebResourceLoadDelegatePrivate.h
r284713 r284728 27 27 */ 28 28 29 #import <Foundation/Foundation.h>30 29 #import <TargetConditionals.h> 31 30 32 31 @class WebView; 33 32 @class WebDataSource; 33 @class NSURLAuthenticationChallenge; 34 @class NSURLResponse; 35 @class NSURLRequest; 34 36 35 37 @interface NSObject (WebResourceLoadDelegatePrivate)
Note:
See TracChangeset
for help on using the changeset viewer.