Skip to content

Commit

Permalink
Made types internal.
Browse files Browse the repository at this point in the history
  • Loading branch information
myrobotzone committed Jul 31, 2017
1 parent 692eed6 commit f622928
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MediaManager.UWP/MediaButtonPlaybackController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Plugin.MediaManager
{
public class MediaButtonPlaybackController
internal class MediaButtonPlaybackController
{
private readonly ISystemMediaTransportControlsWrapper _systemMediaTransportControlsWrapper;
private readonly IPlaybackController _playbackController;
Expand Down
4 changes: 3 additions & 1 deletion MediaManager.UWP/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
[assembly: ComVisible(false)]
[assembly: InternalsVisibleTo("Plugin.MediaManager.UWP.Tests")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Plugin.MediaManager.SystemWrappers
{
public interface ISystemMediaTransportControlsButtonPressedEventArgsWrapper
internal interface ISystemMediaTransportControlsButtonPressedEventArgsWrapper
{
SystemMediaTransportControlsButton Button { get; }
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
using System;
using Windows.Foundation;
using Windows.Foundation;
using Windows.Media;

namespace Plugin.MediaManager.SystemWrappers
{
public interface ISystemMediaTransportControlsWrapper
internal interface ISystemMediaTransportControlsWrapper
{
void SubscribeToMediaButtonEvents();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Windows.Media;
using Windows.Media;

namespace Plugin.MediaManager.SystemWrappers
{
class SystemMediaTransportControlsButtonPressedEventArgsWrapper : ISystemMediaTransportControlsButtonPressedEventArgsWrapper
internal class SystemMediaTransportControlsButtonPressedEventArgsWrapper : ISystemMediaTransportControlsButtonPressedEventArgsWrapper
{
public SystemMediaTransportControlsButton Button { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace Plugin.MediaManager.SystemWrappers
{
class SystemMediaTransportControlsWrapper : ISystemMediaTransportControlsWrapper
internal class SystemMediaTransportControlsWrapper : ISystemMediaTransportControlsWrapper
{
private readonly SystemMediaTransportControls _controls;

Expand Down

0 comments on commit f622928

Please sign in to comment.