Title: [213005] trunk/Source/WebKit2
Revision
213005
Author
[email protected]
Date
2017-02-25 07:47:44 -0800 (Sat, 25 Feb 2017)

Log Message

[GTK] Unreviewed, document deficiency in webkit_website_data_manager_clear() API

Document that this function cannot currently delete cookie data for a particular period of
time.

* UIProcess/API/gtk/WebKitWebsiteDataManager.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (213004 => 213005)


--- trunk/Source/WebKit2/ChangeLog	2017-02-25 09:23:27 UTC (rev 213004)
+++ trunk/Source/WebKit2/ChangeLog	2017-02-25 15:47:44 UTC (rev 213005)
@@ -1,3 +1,12 @@
+2017-02-25  Michael Catanzaro  <[email protected]>
+
+        [GTK] Unreviewed, document deficiency in webkit_website_data_manager_clear() API
+
+        Document that this function cannot currently delete cookie data for a particular period of
+        time.
+
+        * UIProcess/API/gtk/WebKitWebsiteDataManager.cpp:
+
 2017-02-24  Joseph Pecoraro  <[email protected]>
 
         [Resource Timing] Gather timing information with reliable responseEnd time

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebsiteDataManager.cpp (213004 => 213005)


--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebsiteDataManager.cpp	2017-02-25 09:23:27 UTC (rev 213004)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebsiteDataManager.cpp	2017-02-25 15:47:44 UTC (rev 213005)
@@ -773,11 +773,15 @@
  * @user_data: (closure): the data to pass to callback function
  *
  * Asynchronously clear the website data of the given @types modified in the past @timespan.
- * If @timespan is 0 all website data will be removed.
+ * If @timespan is 0, all website data will be removed.
  *
  * When the operation is finished, @callback will be called. You can then call
  * webkit_website_data_manager_clear_finish() to get the result of the operation.
  *
+ * Due to implementation limitations, this function does not currently delete
+ * any stored cookies if @timespan is nonzero. This behavior may change in the
+ * future.
+ *
  * Since: 2.16
  */
 void webkit_website_data_manager_clear(WebKitWebsiteDataManager* manager, WebKitWebsiteDataTypes types, GTimeSpan timeSpan, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to