summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJens Georg <jensg@openismus.com>2012-11-02 17:15:26 +0100
committerJens Georg <jensg@openismus.com>2012-11-22 21:17:20 +0100
commit302f9a0390ce91429e3357d3792434266efa0424 (patch)
tree86a19513d85f564438a08cd8744fc7d5763e4fa0 /tests
parent9e130b56df14788e5ec9680d66dc5ba2c8e09a3e (diff)
downloadrygel-302f9a0390ce91429e3357d3792434266efa0424.tar.gz
server: Add DIDL_S resource to container
This resource is a playlist in DIDL_S format. Some players and renderers can process those playlists directly.
Diffstat (limited to 'tests')
-rw-r--r--tests/rygel-http-item-uri-test.vala5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/rygel-http-item-uri-test.vala b/tests/rygel-http-item-uri-test.vala
index 82889a5b..cfc0f168 100644
--- a/tests/rygel-http-item-uri-test.vala
+++ b/tests/rygel-http-item-uri-test.vala
@@ -72,8 +72,11 @@ private class Rygel.HTTPServer : GLib.Object {
}
}
-private class Rygel.MediaItem : GLib.Object {
+private class Rygel.MediaObject : GLib.Object {
public string id;
+}
+
+private class Rygel.MediaItem : Rygel.MediaObject {
public ArrayList<string> uris = new ArrayList<string> ();
public string mime_type;
}