Title: [203774] trunk/Source/WebKit2
Revision
203774
Author
[email protected]
Date
2016-07-27 08:49:57 -0700 (Wed, 27 Jul 2016)

Log Message

[GTK] Remove network setup from web process
https://bugs.webkit.org/show_bug.cgi?id=160236

Reviewed by Michael Catanzaro.

We are still doing network init and finish in th web process. It's useless since we switched to mandatory
network process.

* WebProcess/gtk/WebProcessMainGtk.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (203773 => 203774)


--- trunk/Source/WebKit2/ChangeLog	2016-07-27 15:30:36 UTC (rev 203773)
+++ trunk/Source/WebKit2/ChangeLog	2016-07-27 15:49:57 UTC (rev 203774)
@@ -1,5 +1,17 @@
 2016-07-27  Carlos Garcia Campos  <[email protected]>
 
+        [GTK] Remove network setup from web process
+        https://bugs.webkit.org/show_bug.cgi?id=160236
+
+        Reviewed by Michael Catanzaro.
+
+        We are still doing network init and finish in th web process. It's useless since we switched to mandatory
+        network process.
+
+        * WebProcess/gtk/WebProcessMainGtk.cpp:
+
+2016-07-27  Carlos Garcia Campos  <[email protected]>
+
         Unreviewed. Update OptionsGTK.cmake and NEWS for 2.13.4 release.
 
         * gtk/NEWS: Add release notes for 2.13.4.

Modified: trunk/Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.cpp (203773 => 203774)


--- trunk/Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.cpp	2016-07-27 15:30:36 UTC (rev 203773)
+++ trunk/Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.cpp	2016-07-27 15:49:57 UTC (rev 203774)
@@ -60,17 +60,8 @@
         bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
         bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
 
-        SoupNetworkSession::defaultSession().setSSLPolicy(SoupNetworkSession::SSLUseSystemCAFile);
         return true;
     }
-
-    void platformFinalize() override
-    {
-        if (SoupCache* soupCache = SoupNetworkSession::defaultSession().cache()) {
-            soup_cache_flush(soupCache);
-            soup_cache_dump(soupCache);
-        }
-    }
 };
 
 int WebProcessMainUnix(int argc, char** argv)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to