Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: ICoreWindowEvents is made internal. #11339

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build/PackageDiffIgnore.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9136,6 +9136,7 @@
<Member fullName="Windows.Storage.Streams.InMemoryBuffer reason="Windows.Storage.Streams.Buffer should be used." />
<Member fullName="Windows.Foundation.HResult" reason="Type is hidden in .NET and shouldn't be used" />
<Member fullName="Windows.Storage.Streams.InMemoryBuffer" reason="Windows.Storage.Streams.Buffer should be used." />
<Member fullName="Windows.UI.Core.ICoreWindowEvents" reason="Not needed publicly" />
<Member fullName="Uno.Extensions.JavaObjectExtensions" reason="Only needed internally" />
<Member fullName="Uno.Client.ICommandExtensions" reason="Only needed internally" />
<Member fullName="Uno.Extensions.UriExtensions" reason="Not needed publicly" />
Expand Down
4 changes: 1 addition & 3 deletions src/Uno.UWP/UI/Core/ICoreWindowEvents.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
#if UNO_HAS_MANAGED_POINTERS
using System;
using System.Linq;

namespace Windows.UI.Core;

public interface ICoreWindowEvents
internal interface ICoreWindowEvents
{
void RaisePointerEntered(PointerEventArgs args);
void RaisePointerExited(PointerEventArgs args);
Expand Down
11 changes: 5 additions & 6 deletions src/Uno.UWP/UI/Core/ICoreWindowsEvents.iOS.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using System;

namespace Windows.UI.Core
namespace Windows.UI.Core;

internal interface ICoreWindowEvents
{
public interface ICoreWindowEvents
{
void RaiseKeyUp(KeyEventArgs args);
void RaiseKeyDown(KeyEventArgs args);
}
void RaiseKeyUp(KeyEventArgs args);
void RaiseKeyDown(KeyEventArgs args);
}