Changeset 203774 in webkit


Ignore:
Timestamp:
Jul 27, 2016 8:49:57 AM (8 years ago)
Author:
Carlos Garcia Campos
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:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r203768 r203774  
     12016-07-27  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Remove network setup from web process
     4        https://bugs.webkit.org/show_bug.cgi?id=160236
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        We are still doing network init and finish in th web process. It's useless since we switched to mandatory
     9        network process.
     10
     11        * WebProcess/gtk/WebProcessMainGtk.cpp:
     12
    1132016-07-27  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.cpp

    r202801 r203774  
    6161        bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
    6262
    63         SoupNetworkSession::defaultSession().setSSLPolicy(SoupNetworkSession::SSLUseSystemCAFile);
    6463        return true;
    65     }
    66 
    67     void platformFinalize() override
    68     {
    69         if (SoupCache* soupCache = SoupNetworkSession::defaultSession().cache()) {
    70             soup_cache_flush(soupCache);
    71             soup_cache_dump(soupCache);
    72         }
    7364    }
    7465};
Note: See TracChangeset for help on using the changeset viewer.