Title: [174417] trunk/Source/WebKit2
Revision
174417
Author
[email protected]
Date
2014-10-07 22:17:29 -0700 (Tue, 07 Oct 2014)

Log Message

Remove WKPageCreateSnapshotOfVisibleContent API.
https://bugs.webkit.org/show_bug.cgi?id=66979

Patch by Sungmann Cho <[email protected]> on 2014-10-07
Reviewed by Darin Adler.

After the landing of the first patch of webkit.org/b/66979,
WKPageCreateSnapshotOfVisibleContent API has been neglected for years.
Currently, this is not used anywhere and does not break the nightlies.
So we can remove this.

* UIProcess/API/C/WKPage.cpp:
(WKPageCreateSnapshotOfVisibleContent): Deleted.
* UIProcess/API/C/WKPagePrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (174416 => 174417)


--- trunk/Source/WebKit2/ChangeLog	2014-10-08 04:51:35 UTC (rev 174416)
+++ trunk/Source/WebKit2/ChangeLog	2014-10-08 05:17:29 UTC (rev 174417)
@@ -1,5 +1,21 @@
 2014-10-07  Sungmann Cho  <[email protected]>
 
+        Remove WKPageCreateSnapshotOfVisibleContent API.
+        https://bugs.webkit.org/show_bug.cgi?id=66979
+
+        Reviewed by Darin Adler.
+
+        After the landing of the first patch of webkit.org/b/66979,
+        WKPageCreateSnapshotOfVisibleContent API has been neglected for years.
+        Currently, this is not used anywhere and does not break the nightlies.
+        So we can remove this.
+
+        * UIProcess/API/C/WKPage.cpp:
+        (WKPageCreateSnapshotOfVisibleContent): Deleted.
+        * UIProcess/API/C/WKPagePrivate.h:
+
+2014-10-07  Sungmann Cho  <[email protected]>
+
         Remove WKPageSetInvalidMessageFunction.
         https://bugs.webkit.org/show_bug.cgi?id=137509
 

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp (174416 => 174417)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-10-08 04:51:35 UTC (rev 174416)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPage.cpp	2014-10-08 05:17:29 UTC (rev 174417)
@@ -1776,11 +1776,6 @@
 }
 #endif
 
-WKImageRef WKPageCreateSnapshotOfVisibleContent(WKPageRef)
-{
-    return 0;
-}
-
 void WKPageSetShouldSendEventsSynchronously(WKPageRef page, bool sync)
 {
     toImpl(page)->setShouldSendEventsSynchronously(sync);

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h (174416 => 174417)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h	2014-10-08 04:51:35 UTC (rev 174416)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPagePrivate.h	2014-10-08 05:17:29 UTC (rev 174417)
@@ -82,9 +82,6 @@
 WK_EXPORT void WKPageDrawPagesToPDF(WKPageRef page, WKFrameRef frame, WKPrintInfo printInfo, uint32_t first, uint32_t count, WKPageDrawToPDFFunction callback, void* context);
 WK_EXPORT void WKPageEndPrinting(WKPageRef page);
 
-// FIXME https://bugs.webkit.org/show_bug.cgi?id=66979: Remove this sync call.
-WK_EXPORT WKImageRef WKPageCreateSnapshotOfVisibleContent(WKPageRef page);
-
 WK_EXPORT void WKPageSetShouldSendEventsSynchronously(WKPageRef page, bool sync);
 
 WK_EXPORT bool WKPageGetAllowsRemoteInspection(WKPageRef page);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to