Title: [108070] trunk/Source/WebKit/efl
Revision
108070
Author
[email protected]
Date
2012-02-17 06:42:58 -0800 (Fri, 17 Feb 2012)

Log Message

[EFL] Unreviewed, adapt to the changes introduced in r107973.

SVN r107973 moved some libsoup feature initialization code to
WebCore, but only changed the GTK+ bits in WebKit.

* ewk/ewk_main.cpp:
(_ewk_init_body): Do not initialize the content sniffer and the
decoder here, the initialization is now done in WebCore.

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (108069 => 108070)


--- trunk/Source/WebKit/efl/ChangeLog	2012-02-17 14:32:17 UTC (rev 108069)
+++ trunk/Source/WebKit/efl/ChangeLog	2012-02-17 14:42:58 UTC (rev 108070)
@@ -1,5 +1,16 @@
 2012-02-17  Raphael Kubo da Costa  <[email protected]>
 
+        [EFL] Unreviewed, adapt to the changes introduced in r107973.
+
+        SVN r107973 moved some libsoup feature initialization code to
+        WebCore, but only changed the GTK+ bits in WebKit.
+
+        * ewk/ewk_main.cpp:
+        (_ewk_init_body): Do not initialize the content sniffer and the
+        decoder here, the initialization is now done in WebCore.
+
+2012-02-17  Raphael Kubo da Costa  <[email protected]>
+
         Unreviewed, fix the build with ENABLE(DEVICE_ORIENTATION) after
         r107518. The EFL EWS bot doesn't enable that flag, so the breakage
         was not spotted earlier.

Modified: trunk/Source/WebKit/efl/ewk/ewk_main.cpp (108069 => 108070)


--- trunk/Source/WebKit/efl/ewk/ewk_main.cpp	2012-02-17 14:32:17 UTC (rev 108069)
+++ trunk/Source/WebKit/efl/ewk/ewk_main.cpp	2012-02-17 14:42:58 UTC (rev 108070)
@@ -176,9 +176,6 @@
     WebCore::StorageTracker::initializeTracker(webkitDirectory.utf8().data(), trackerClient());
 
     SoupSession* session = WebCore::ResourceHandle::defaultSession();
-    soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_SNIFFER);
-    soup_session_add_feature_by_type(session, SOUP_TYPE_CONTENT_DECODER);
-
     SoupSessionFeature* auth_dialog = static_cast<SoupSessionFeature*>(g_object_new(EWK_TYPE_SOUP_AUTH_DIALOG, 0));
     soup_session_add_feature(session, auth_dialog);
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to