~midori/midori/trunk

« back to all changes in this revision

Viewing changes to katze/midori-paths.vala

  • Committer: Christian Dywan
  • Date: 2013-06-19 20:27:53 UTC
  • mto: This revision was merged to the branch mainline in revision 6220.
  • Revision ID: christian.dywan@canonical.com-20130619202753-mzmahpq29x0xl3om
Drop unneeded WebKit < 1.8 version guards

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
                string folder = Path.build_filename (user_data_dir, "webkit", "icondatabase");
156
156
#if HAVE_WEBKIT2
157
157
                WebKit.WebContext.get_default ().set_favicon_database_directory (folder);
158
 
#elif HAVE_WEBKIT_1_8_0
 
158
#else
159
159
                WebKit.get_favicon_database ().set_path (folder);
160
160
#endif
161
161
            }
416
416
            assert (user_data_dir != null);
417
417
#if HAVE_WEBKIT2
418
418
            WebKit.WebContext.get_default ().get_favicon_database ().clear ();
419
 
#elif HAVE_WEBKIT_1_8_0
 
419
#else
420
420
            WebKit.get_favicon_database ().clear ();
421
421
#endif
422
422
            /* FIXME: Exclude search engine icons */
434
434
            /* TODO async
435
435
            var database = WebKit.WebContext.get_default ().get_favicon_database ();
436
436
            database.get_favicon.begin (uri, null); */
437
 
#elif HAVE_WEBKIT_1_8_0
 
437
#else
438
438
            Gdk.Pixbuf? pixbuf = WebKit.get_favicon_database ()
439
439
                .try_get_favicon_pixbuf (uri, icon_width, icon_height);
440
440
            if (pixbuf != null)