aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-12 14:04:25 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-05-12 14:04:25 -0400
commit631442883085b10e36675fca5117fa3a49a608e0 (patch)
tree1b542459c3d6a3e6833c2993b4c8a7e4992de61a /MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs
parentb9b568de13d81f9db1a8502d50940475c1d79c72 (diff)
Add remote control chapter menu
Diffstat (limited to 'MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs b/MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs
deleted file mode 100644
index 3ec2f53ec..000000000
--- a/MediaBrowser.Server.Implementations/Roku/RokuControllerFactory.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using MediaBrowser.Common.Net;
-using MediaBrowser.Controller;
-using MediaBrowser.Controller.Session;
-using MediaBrowser.Model.Entities;
-using MediaBrowser.Model.Serialization;
-using System;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Server.Implementations.Roku
-{
- public class RokuControllerFactory : ISessionControllerFactory
- {
- private readonly IHttpClient _httpClient;
- private readonly IJsonSerializer _json;
- private readonly IServerApplicationHost _appHost;
-
- public RokuControllerFactory(IHttpClient httpClient, IJsonSerializer json, IServerApplicationHost appHost)
- {
- _httpClient = httpClient;
- _json = json;
- _appHost = appHost;
- }
-
- public ISessionController GetSessionController(SessionInfo session)
- {
- if (string.Equals(session.Client, "roku", StringComparison.OrdinalIgnoreCase))
- {
- session.PlayableMediaTypes = new List<string> { MediaType.Video, MediaType.Audio };
-
- return new RokuSessionController(_httpClient, _json, _appHost, session);
- }
-
- return null;
- }
- }
-}