]> spindle.queued.net Git - midori/commitdiff
Remove leftover version guards for WebKit > 1.1.17
authorPaweł Forysiuk <tuxator@o2.pl>
Mon, 15 Aug 2011 20:37:59 +0000 (22:37 +0200)
committerChristian Dywan <christian@twotoasts.de>
Mon, 15 Aug 2011 20:56:38 +0000 (22:56 +0200)
extensions/adblock.c
extensions/addons.c
extensions/web-cache.c
midori/midori-view.c

index dcde78de2fdf6a91172653b3b3db02739d3b856c..3b64feebee01c4752370083b704d5c33c4283a92 100644 (file)
@@ -107,7 +107,6 @@ adblock_init_db ()
     blockcssprivate = g_string_new ("");
 }
 
-#if WEBKIT_CHECK_VERSION (1, 1, 2)
 static void
 adblock_download_notify_status_cb (WebKitDownload* download,
                                    GParamSpec*     pspec,
@@ -121,7 +120,6 @@ adblock_download_notify_status_cb (WebKitDownload* download,
     g_free (path);
     /* g_object_unref (download); */
 }
-#endif
 
 static gchar*
 adblock_get_filename_for_uri (const gchar* uri)
@@ -178,7 +176,6 @@ adblock_reload_rules (MidoriExtension* extension,
 
             if (!adblock_parse_file (path))
             {
-                #if WEBKIT_CHECK_VERSION (1, 1, 2)
                 WebKitNetworkRequest* request;
                 WebKitDownload* download;
                 gchar* destination = g_filename_to_uri (path, NULL, NULL);
@@ -191,7 +188,6 @@ adblock_reload_rules (MidoriExtension* extension,
                 g_signal_connect (download, "notify::status",
                     G_CALLBACK (adblock_download_notify_status_cb), path);
                 webkit_download_start (download);
-                #endif
             }
             else
                 g_free (path);
index 08eb2abc80fec59ae78a98131d7f557977b39568..08dc26bc3bcf328906fdc885bcea97f6713361e3 100644 (file)
@@ -241,10 +241,8 @@ addons_notify_load_status_cb (MidoriView*      view,
     const gchar* uri = midori_view_get_display_uri (view);
     WebKitWebView* web_view = WEBKIT_WEB_VIEW (midori_view_get_web_view (view));
 
-    #if WEBKIT_CHECK_VERSION (1, 1, 14)
     if (webkit_web_view_get_view_source_mode (web_view))
         return;
-    #endif
 
     if (uri && *uri)
     {
index 1f8753cc41c3911cff3ea1f3f14207e3c4dcf9ad..9a3d0ebd2e6e48a274e97164c228a4ac5043da1e 100644 (file)
@@ -157,7 +157,6 @@ static void
 web_cache_set_content_type (SoupMessage* msg,
                             SoupBuffer*  buffer)
 {
-    #if WEBKIT_CHECK_VERSION (1, 1, 15)
     gchar* sniffed_type;
     SoupContentSniffer* sniffer = soup_content_sniffer_new ();
     if ((sniffed_type = soup_content_sniffer_sniff (sniffer, msg, buffer, NULL)))
@@ -171,7 +170,6 @@ web_cache_set_content_type (SoupMessage* msg,
             msg->response_headers, "Content-Type");
         g_signal_emit_by_name (msg, "content-sniffed", content_type, NULL);
     }
-    #endif
 }
 
 static void
@@ -390,7 +388,6 @@ web_cache_session_request_queued_cb (SoupSession*     session,
     g_free (uri);
 }
 
-#if WEBKIT_CHECK_VERSION (1, 1, 3)
 static void
 web_cache_add_download_cb (MidoriBrowser*   browser,
                            WebKitDownload*  download,
@@ -402,7 +399,6 @@ web_cache_add_download_cb (MidoriBrowser*   browser,
         g_object_set_data (G_OBJECT (msg), "midori-web-cache-download",
                            (gpointer)0xdeadbeef);
 }
-#endif
 
 static void
 web_cache_deactivate_cb (MidoriExtension* extension,
@@ -413,10 +409,8 @@ web_cache_app_add_browser_cb (MidoriApp*       app,
                               MidoriBrowser*   browser,
                               MidoriExtension* extension)
 {
-    #if WEBKIT_CHECK_VERSION (1, 1, 3)
     g_signal_connect (browser, "add-download",
         G_CALLBACK (web_cache_add_download_cb), extension);
-    #endif
     g_signal_connect (extension, "deactivate",
         G_CALLBACK (web_cache_deactivate_cb), browser);
 }
@@ -434,10 +428,8 @@ web_cache_deactivate_cb (MidoriExtension* extension,
         extension, web_cache_deactivate_cb, browser);
     g_signal_handlers_disconnect_by_func (
         app, web_cache_app_add_browser_cb, extension);
-    #if WEBKIT_CHECK_VERSION (1, 1, 3)
     g_signal_handlers_disconnect_by_func (
         browser, web_cache_add_download_cb, extension);
-    #endif
 }
 
 static void
index 367b4c2478d87d081d06f051c9a661f943e6519d..3e77b380a8f255138e02557a9d6fff8000359d34 100644 (file)
@@ -69,9 +69,7 @@ struct _MidoriView
     MidoriLoadStatus load_status;
     gboolean minimized;
     gchar* statusbar_text;
-    #if WEBKIT_CHECK_VERSION (1, 1, 15)
     WebKitHitTestResult* hit_test;
-    #endif
     gchar* link_uri;
     gboolean has_selection;
     gchar* selected_text;