hook up roku session controller + web client layout fixes

This commit is contained in:
Luke Pulverenti
2013-12-25 09:39:46 -05:00
parent b5fa341e08
commit bb5e6fdcad
15 changed files with 112 additions and 21 deletions

View File

@@ -0,0 +1,16 @@

namespace MediaBrowser.Controller.Session
{
/// <summary>
/// Interface ISesssionControllerFactory
/// </summary>
public interface ISessionControllerFactory
{
/// <summary>
/// Gets the session controller.
/// </summary>
/// <param name="session">The session.</param>
/// <returns>ISessionController.</returns>
ISessionController GetSessionController(SessionInfo session);
}
}