Title: [202638] trunk/Source/WebKit2
Revision
202638
Author
[email protected]
Date
2016-06-29 11:48:06 -0700 (Wed, 29 Jun 2016)

Log Message

Delete WKElementInfo since it's not used
https://bugs.webkit.org/show_bug.cgi?id=159265

Reviewed by Sam Weinig.

* Shared/API/Cocoa/WebKit.h:
* UIProcess/API/Cocoa/WKElementInfo.h: Removed.
* UIProcess/API/Cocoa/WKElementInfo.mm: Removed.
* UIProcess/API/Cocoa/WKElementInfoInternal.h: Removed.
* UIProcess/API/Cocoa/WKPreviewElementInfo.h:
* UIProcess/API/Cocoa/WKPreviewElementInfo.mm:
(-[WKPreviewElementInfo _initWithLinkURL:]):
(-[WKPreviewElementInfo copyWithZone:]):
(-[WKPreviewElementInfo linkURL]):
* UIProcess/API/Cocoa/WKPreviewElementInfoInternal.h:
* UIProcess/API/Cocoa/_WKContextMenuElementInfo.h:
* UIProcess/API/Cocoa/_WKContextMenuElementInfo.mm:
(-[_WKContextMenuElementInfo copyWithZone:]):
* WebKit2.xcodeproj/project.pbxproj:

Modified Paths

Removed Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (202637 => 202638)


--- trunk/Source/WebKit2/ChangeLog	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/ChangeLog	2016-06-29 18:48:06 UTC (rev 202638)
@@ -1,3 +1,25 @@
+2016-06-29  Beth Dakin  <[email protected]>
+
+        Delete WKElementInfo since it's not used
+        https://bugs.webkit.org/show_bug.cgi?id=159265
+
+        Reviewed by Sam Weinig.
+
+        * Shared/API/Cocoa/WebKit.h:
+        * UIProcess/API/Cocoa/WKElementInfo.h: Removed.
+        * UIProcess/API/Cocoa/WKElementInfo.mm: Removed.
+        * UIProcess/API/Cocoa/WKElementInfoInternal.h: Removed.
+        * UIProcess/API/Cocoa/WKPreviewElementInfo.h:
+        * UIProcess/API/Cocoa/WKPreviewElementInfo.mm:
+        (-[WKPreviewElementInfo _initWithLinkURL:]):
+        (-[WKPreviewElementInfo copyWithZone:]):
+        (-[WKPreviewElementInfo linkURL]):
+        * UIProcess/API/Cocoa/WKPreviewElementInfoInternal.h:
+        * UIProcess/API/Cocoa/_WKContextMenuElementInfo.h:
+        * UIProcess/API/Cocoa/_WKContextMenuElementInfo.mm:
+        (-[_WKContextMenuElementInfo copyWithZone:]):
+        * WebKit2.xcodeproj/project.pbxproj:
+
 2016-06-29  Jeremy Jones  <[email protected]>
 
         Replace MPAudioVideoRoutingActionSheet with MPAVRoutingSheet.

Modified: trunk/Source/WebKit2/Shared/API/Cocoa/WebKit.h (202637 => 202638)


--- trunk/Source/WebKit2/Shared/API/Cocoa/WebKit.h	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/Shared/API/Cocoa/WebKit.h	2016-06-29 18:48:06 UTC (rev 202638)
@@ -25,7 +25,6 @@
 
 #import <WebKit/WKBackForwardList.h>
 #import <WebKit/WKBackForwardListItem.h>
-#import <WebKit/WKElementInfo.h>
 #import <WebKit/WKError.h>
 #import <WebKit/WKFoundation.h>
 #import <WebKit/WKFrameInfo.h>

Deleted: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfo.h (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfo.h	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfo.h	2016-06-29 18:48:06 UTC (rev 202638)
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2015 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <WebKit/WKFoundation.h>
-
-#if WK_API_ENABLED
-
-NS_ASSUME_NONNULL_BEGIN
-
-WK_CLASS_AVAILABLE(WK_MAC_TBA, WK_IOS_TBA)
-@interface WKElementInfo : NSObject <NSCopying>
-
-@property (nonatomic, readonly) NSURL *linkURL;
-
-@end
-
-NS_ASSUME_NONNULL_END
-
-#endif

Deleted: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfo.mm (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfo.mm	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfo.mm	2016-06-29 18:48:06 UTC (rev 202638)
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2015 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "WKElementInfoInternal.h"
-
-#if WK_API_ENABLED
-
-@implementation WKElementInfo
-
-- (id)copyWithZone:(NSZone *)zone
-{
-    return [self retain];
-}
-
-- (NSURL *)linkURL
-{
-    return _linkURL.get();
-}
-
-@end
-
-#endif

Deleted: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfoInternal.h (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfoInternal.h	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKElementInfoInternal.h	2016-06-29 18:48:06 UTC (rev 202638)
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2015 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "WKElementInfo.h"
-
-#import <wtf/RetainPtr.h>
-
-#if WK_API_ENABLED
-
-@interface WKElementInfo () {
-@package
-    RetainPtr<NSURL> _linkURL;
-}
-
-@end
-
-#endif

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfo.h (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfo.h	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfo.h	2016-06-29 18:48:06 UTC (rev 202638)
@@ -27,13 +27,13 @@
 
 #if WK_API_ENABLED && TARGET_OS_IPHONE
 
-#import <WebKit/WKElementInfo.h>
-
 NS_ASSUME_NONNULL_BEGIN
 
 WK_CLASS_AVAILABLE(NA, WK_IOS_TBA)
-@interface WKPreviewElementInfo : WKElementInfo
+@interface WKPreviewElementInfo : NSObject <NSCopying>
 
+@property (nonatomic, readonly, nullable) NSURL *linkURL;
+
 @end
 
 NS_ASSUME_NONNULL_END

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfo.mm (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfo.mm	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfo.mm	2016-06-29 18:48:06 UTC (rev 202638)
@@ -26,9 +26,6 @@
 #import "config.h"
 #import "WKPreviewElementInfoInternal.h"
 
-#import "WKElementInfoInternal.h"
-#import <wtf/RetainPtr.h>
-
 #if WK_API_ENABLED && PLATFORM(IOS)
 
 @implementation WKPreviewElementInfo
@@ -43,6 +40,16 @@
     return self;
 }
 
+- (id)copyWithZone:(NSZone *)zone
+{
+    return [self retain];
+}
+
+- (NSURL *)linkURL
+{
+    return _linkURL.get();
+}
+
 @end
 
 #endif

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfoInternal.h (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfoInternal.h	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKPreviewElementInfoInternal.h	2016-06-29 18:48:06 UTC (rev 202638)
@@ -25,9 +25,14 @@
 
 #import "WKPreviewElementInfo.h"
 
+#import <wtf/RetainPtr.h>
+
 #if WK_API_ENABLED && TARGET_OS_IPHONE
 
-@interface WKPreviewElementInfo ()
+@interface WKPreviewElementInfo () {
+@package
+    RetainPtr<NSURL> _linkURL;
+}
 
 - (instancetype)_initWithLinkURL:(NSURL *)url;
 

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKContextMenuElementInfo.h (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKContextMenuElementInfo.h	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKContextMenuElementInfo.h	2016-06-29 18:48:06 UTC (rev 202638)
@@ -27,12 +27,10 @@
 
 #if WK_API_ENABLED && !TARGET_OS_IPHONE
 
-#import <WebKit/WKElementInfo.h>
-
 NS_ASSUME_NONNULL_BEGIN
 
 WK_CLASS_AVAILABLE(WK_MAC_TBA, NA)
-@interface _WKContextMenuElementInfo : WKElementInfo
+@interface _WKContextMenuElementInfo : NSObject <NSCopying>
 
 @end
 

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKContextMenuElementInfo.mm (202637 => 202638)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKContextMenuElementInfo.mm	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/_WKContextMenuElementInfo.mm	2016-06-29 18:48:06 UTC (rev 202638)
@@ -30,6 +30,11 @@
 
 @implementation _WKContextMenuElementInfo
 
+- (id)copyWithZone:(NSZone *)zone
+{
+    return [self retain];
+}
+
 @end
 
 #endif

Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (202637 => 202638)


--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2016-06-29 18:45:53 UTC (rev 202637)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2016-06-29 18:48:06 UTC (rev 202638)
@@ -254,8 +254,6 @@
 		1A53C2A21A323004004E8C70 /* InjectedBundleCSSStyleDeclarationHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4ED3261A3119D90079BD49 /* InjectedBundleCSSStyleDeclarationHandle.cpp */; };
 		1A53C2A91A32572B004E8C70 /* WebsiteDataStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A53C2A41A32569F004E8C70 /* WebsiteDataStore.cpp */; };
 		1A53C2AA1A325730004E8C70 /* WebsiteDataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A53C2A51A32569F004E8C70 /* WebsiteDataStore.h */; };
-		1A5704F11BE0173F00874AF1 /* WKElementInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A5704EF1BE0173F00874AF1 /* WKElementInfo.mm */; };
-		1A5704F21BE0174000874AF1 /* WKElementInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5704F01BE0173F00874AF1 /* WKElementInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
 		1A5704F71BE01FF400874AF1 /* _WKContextMenuElementInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A5704F51BE01FF400874AF1 /* _WKContextMenuElementInfo.mm */; };
 		1A5704F81BE01FF400874AF1 /* _WKContextMenuElementInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5704F61BE01FF400874AF1 /* _WKContextMenuElementInfo.h */; settings = {ATTRIBUTES = (Private, ); }; };
 		1A5704FB1BE1751100874AF1 /* RemoteObjectInvocation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A5704F91BE1751100874AF1 /* RemoteObjectInvocation.mm */; };
@@ -1224,7 +1222,6 @@
 		9391F2CB121B67AD00EBF7E8 /* WebFrameNetworkingContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 9391F283121B38F500EBF7E8 /* WebFrameNetworkingContext.h */; };
 		9395E68A1BF2C33200F49BCE /* WKPreviewElementInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9395E6891BF2C33200F49BCE /* WKPreviewElementInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
 		9395E68C1BF2C35200F49BCE /* WKPreviewElementInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9395E68B1BF2C35200F49BCE /* WKPreviewElementInfo.mm */; };
-		9395E68E1BF410FD00F49BCE /* WKElementInfoInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9395E68D1BF410FD00F49BCE /* WKElementInfoInternal.h */; };
 		939AE7661316E99C00AE06A6 /* WebCoreArgumentCoders.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 939AE7651316E99C00AE06A6 /* WebCoreArgumentCoders.cpp */; };
 		939F401C19FB0BBC002B2B42 /* WKActionMenuTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 939F401B19FB0BBC002B2B42 /* WKActionMenuTypes.h */; settings = {ATTRIBUTES = (Private, ); }; };
 		93A253ED1C922E1E00F9F68D /* WKPreviewActionItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A253EC1C922E1E00F9F68D /* WKPreviewActionItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
@@ -2219,8 +2216,6 @@
 		1A52C0F61A38CDC70016160A /* WebStorageNamespaceProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebStorageNamespaceProvider.h; sourceTree = "<group>"; };
 		1A53C2A41A32569F004E8C70 /* WebsiteDataStore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebsiteDataStore.cpp; sourceTree = "<group>"; };
 		1A53C2A51A32569F004E8C70 /* WebsiteDataStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebsiteDataStore.h; sourceTree = "<group>"; };
-		1A5704EF1BE0173F00874AF1 /* WKElementInfo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKElementInfo.mm; sourceTree = "<group>"; };
-		1A5704F01BE0173F00874AF1 /* WKElementInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKElementInfo.h; sourceTree = "<group>"; };
 		1A5704F51BE01FF400874AF1 /* _WKContextMenuElementInfo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = _WKContextMenuElementInfo.mm; sourceTree = "<group>"; };
 		1A5704F61BE01FF400874AF1 /* _WKContextMenuElementInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKContextMenuElementInfo.h; sourceTree = "<group>"; };
 		1A5704F91BE1751100874AF1 /* RemoteObjectInvocation.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RemoteObjectInvocation.mm; sourceTree = "<group>"; };
@@ -3289,7 +3284,6 @@
 		9391F284121B38F500EBF7E8 /* WebFrameNetworkingContext.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebFrameNetworkingContext.mm; sourceTree = "<group>"; };
 		9395E6891BF2C33200F49BCE /* WKPreviewElementInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKPreviewElementInfo.h; sourceTree = "<group>"; };
 		9395E68B1BF2C35200F49BCE /* WKPreviewElementInfo.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKPreviewElementInfo.mm; sourceTree = "<group>"; };
-		9395E68D1BF410FD00F49BCE /* WKElementInfoInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKElementInfoInternal.h; sourceTree = "<group>"; };
 		939AE7651316E99C00AE06A6 /* WebCoreArgumentCoders.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebCoreArgumentCoders.cpp; sourceTree = "<group>"; };
 		939F401B19FB0BBC002B2B42 /* WKActionMenuTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKActionMenuTypes.h; sourceTree = "<group>"; };
 		93A253EC1C922E1E00F9F68D /* WKPreviewActionItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKPreviewActionItem.h; sourceTree = "<group>"; };
@@ -5149,9 +5143,6 @@
 				37C4C08418149C5B003688B9 /* WKBackForwardListItem.mm */,
 				37C4C08818149F23003688B9 /* WKBackForwardListItemInternal.h */,
 				1A9F28101958F478008CAC72 /* WKBackForwardListPrivate.h */,
-				1A5704F01BE0173F00874AF1 /* WKElementInfo.h */,
-				1A5704EF1BE0173F00874AF1 /* WKElementInfo.mm */,
-				9395E68D1BF410FD00F49BCE /* WKElementInfoInternal.h */,
 				1AF4592D19464B2000F9D4A2 /* WKError.h */,
 				1AF4592C19464B2000F9D4A2 /* WKError.mm */,
 				1A2D252A194688FD004537B0 /* WKErrorInternal.h */,
@@ -8003,8 +7994,6 @@
 				293EBEAB1627D9C9005F89F1 /* WKDOMText.h in Headers */,
 				BC017D2116263308007054F5 /* WKDOMTextIterator.h in Headers */,
 				1AB7D78D1288CD9A00CFD08C /* WKDownload.h in Headers */,
-				1A5704F21BE0174000874AF1 /* WKElementInfo.h in Headers */,
-				9395E68E1BF410FD00F49BCE /* WKElementInfoInternal.h in Headers */,
 				1AF4592F19464B2000F9D4A2 /* WKError.h in Headers */,
 				BCFD548C132D82680055D816 /* WKErrorCF.h in Headers */,
 				37B5045219EEF31300CE2CF8 /* WKErrorPrivate.h in Headers */,
@@ -9484,7 +9473,6 @@
 				293EBEAC1627D9C9005F89F1 /* WKDOMText.mm in Sources */,
 				BC017D2016263308007054F5 /* WKDOMTextIterator.mm in Sources */,
 				1AB7D78E1288CD9A00CFD08C /* WKDownload.cpp in Sources */,
-				1A5704F11BE0173F00874AF1 /* WKElementInfo.mm in Sources */,
 				1AF4592E19464B2000F9D4A2 /* WKError.mm in Sources */,
 				BCFD548B132D82680055D816 /* WKErrorCF.cpp in Sources */,
 				BC4075FB124FF0270068F20A /* WKErrorRef.cpp in Sources */,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to