Title: [190806] trunk/Source/WebKit2
Revision
190806
Author
ander...@apple.com
Date
2015-10-09 10:30:36 -0700 (Fri, 09 Oct 2015)

Log Message

Remove two unused WKFrame functions
https://bugs.webkit.org/show_bug.cgi?id=149958

Reviewed by Dan Bernstein.

* UIProcess/API/C/WKFrame.cpp:
(WKFrameCopyChildFrames): Deleted.
(WKFrameGetParentFrame): Deleted.
* UIProcess/API/C/WKFrame.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (190805 => 190806)


--- trunk/Source/WebKit2/ChangeLog	2015-10-09 17:20:54 UTC (rev 190805)
+++ trunk/Source/WebKit2/ChangeLog	2015-10-09 17:30:36 UTC (rev 190806)
@@ -1,3 +1,15 @@
+2015-10-09  Anders Carlsson  <ander...@apple.com>
+
+        Remove two unused WKFrame functions
+        https://bugs.webkit.org/show_bug.cgi?id=149958
+
+        Reviewed by Dan Bernstein.
+
+        * UIProcess/API/C/WKFrame.cpp:
+        (WKFrameCopyChildFrames): Deleted.
+        (WKFrameGetParentFrame): Deleted.
+        * UIProcess/API/C/WKFrame.h:
+
 2015-10-08  Michael Catanzaro  <mcatanz...@igalia.com>
 
         Format string issues in NetworkCache.cpp

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKFrame.cpp (190805 => 190806)


--- trunk/Source/WebKit2/UIProcess/API/C/WKFrame.cpp	2015-10-09 17:20:54 UTC (rev 190805)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKFrame.cpp	2015-10-09 17:30:36 UTC (rev 190806)
@@ -145,15 +145,3 @@
 {
     toImpl(frameRef)->getWebArchive(toGenericCallbackFunction(context, callback));
 }
-
-// NOTE: These are deprecated and should be removed. They currently do nothing.
-
-WKArrayRef WKFrameCopyChildFrames(WKFrameRef)
-{
-    return 0;
-}
-
-WKFrameRef WKFrameGetParentFrame(WKFrameRef)
-{
-    return 0;
-}

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKFrame.h (190805 => 190806)


--- trunk/Source/WebKit2/UIProcess/API/C/WKFrame.h	2015-10-09 17:20:54 UTC (rev 190805)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKFrame.h	2015-10-09 17:30:36 UTC (rev 190806)
@@ -77,11 +77,6 @@
 typedef void (*WKFrameGetWebArchiveFunction)(WKDataRef archiveData, WKErrorRef error, void* functionContext);
 WK_EXPORT void WKFrameGetWebArchive(WKFrameRef frame, WKFrameGetWebArchiveFunction function, void* functionContext);
 
-// NOTE: These are deprecated and should be removed. They currently do nothing.
-
-WK_EXPORT WKArrayRef WKFrameCopyChildFrames(WKFrameRef frame);
-WK_EXPORT WKFrameRef WKFrameGetParentFrame(WKFrameRef frame);
-
 #ifdef __cplusplus
 }
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to