[grilo-plugins] lua-factory: Export "slow_keys" function



commit 0db3b9304042264a4884cc7f93dce93352313be0
Author: Juan A. Suarez Romero <jasuarez igalia com>
Date:   Sun Aug 10 18:24:22 2014 +0000

    lua-factory: Export "slow_keys" function

 src/lua-factory/grl-lua-factory.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)
---
diff --git a/src/lua-factory/grl-lua-factory.c b/src/lua-factory/grl-lua-factory.c
index 8b9174f..319a45a 100644
--- a/src/lua-factory/grl-lua-factory.c
+++ b/src/lua-factory/grl-lua-factory.c
@@ -107,6 +107,8 @@ static void grl_lua_factory_source_finalize (GObject *object);
 
 static const GList *grl_lua_factory_source_supported_keys (GrlSource *source);
 
+static const GList *grl_lua_factory_source_slow_keys(GrlSource *source);
+
 static void grl_lua_factory_source_search (GrlSource *source,
                                            GrlSourceSearchSpec *ss);
 
@@ -314,6 +316,7 @@ grl_lua_factory_source_class_init (GrlLuaFactorySourceClass *klass)
   g_class->finalize = grl_lua_factory_source_finalize;
 
   source_class->supported_keys = grl_lua_factory_source_supported_keys;
+  source_class->slow_keys= grl_lua_factory_source_slow_keys;
   source_class->supported_operations = grl_lua_factory_source_supported_operations;
   source_class->search = grl_lua_factory_source_search;
   source_class->browse = grl_lua_factory_source_browse;
@@ -960,6 +963,13 @@ grl_lua_factory_source_supported_keys (GrlSource *source)
   return lua_source->priv->supported_keys;
 }
 
+static const GList *
+grl_lua_factory_source_slow_keys (GrlSource *source)
+{
+  GrlLuaFactorySource *lua_source = GRL_LUA_FACTORY_SOURCE (source);
+  return lua_source->priv->slow_keys;
+}
+
 static GrlSupportedOps
 grl_lua_factory_source_supported_operations (GrlSource *source)
 {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]