tests: the navigation interface isn't GstImplementsInterface-wrapped
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 26 Jun 2011 00:06:19 +0000 (01:06 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 26 Jun 2011 20:07:52 +0000 (21:07 +0100)
tests/check/libs/navigation.c

index e3928d1..1f143a3 100644 (file)
@@ -54,7 +54,6 @@ struct TestElementClass
 GType test_element_get_type (void);
 
 static void init_interface (GType type);
-static void gst_implements_interface_init (GstImplementsInterfaceClass * klass);
 static void nav_send_event (GstNavigation * navigation,
     GstStructure * structure);
 
@@ -75,14 +74,7 @@ init_interface (GType type)
     NULL,
     NULL,
   };
-  static const GInterfaceInfo implements_iface_info = {
-    (GInterfaceInitFunc) gst_implements_interface_init,
-    NULL,
-    NULL,
-  };
 
-  g_type_add_interface_static (type, GST_TYPE_IMPLEMENTS_INTERFACE,
-      &implements_iface_info);
   g_type_add_interface_static (type, GST_TYPE_NAVIGATION,
       &navigation_iface_info);
 }
@@ -97,22 +89,6 @@ test_element_class_init (TestElementClass * klass)
 {
 }
 
-static gboolean
-test_element_interface_supported (GstImplementsInterface * ifacE,
-    GType interface_type)
-{
-  if (interface_type == GST_TYPE_NAVIGATION)
-    return TRUE;
-
-  return FALSE;
-}
-
-static void
-gst_implements_interface_init (GstImplementsInterfaceClass * klass)
-{
-  klass->supported = test_element_interface_supported;
-}
-
 static void
 test_element_init (TestElement * this, TestElementClass * klass)
 {