Skip to content

Commit 58369fa

Browse files
committed
Core - Remove IContextMenuParams.IsPepperMenu
This is a breaking change Resolves #3460
1 parent 249c75a commit 58369fa

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

CefSharp.Core.Runtime/Internals/CefContextMenuParamsWrapper.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,5 @@ namespace CefSharp
144144

145145
return _wrappedInfo->IsCustomMenu();
146146
}
147-
148-
bool CefContextMenuParamsWrapper::IsPepperMenu::get()
149-
{
150-
ThrowIfDisposed();
151-
152-
return _wrappedInfo->IsPepperMenu();
153-
}
154147
}
155148
}

CefSharp.Core.Runtime/Internals/CefContextMenuParamsWrapper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ namespace CefSharp
5757
virtual property bool IsSpellCheckEnabled { bool get(); }
5858
virtual property ContextMenuEditState EditStateFlags { ContextMenuEditState get(); }
5959
virtual property bool IsCustomMenu { bool get(); }
60-
virtual property bool IsPepperMenu { bool get(); }
6160
};
6261
}
6362
}

CefSharp/IContextMenuParams.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,6 @@ public interface IContextMenuParams : IDisposable
121121
/// </summary>
122122
bool IsCustomMenu { get; }
123123

124-
/// <summary>
125-
/// Returns true if the context menu was invoked from a pepper plugin.
126-
/// </summary>
127-
bool IsPepperMenu { get; }
128-
129124
/// <summary>
130125
/// Gets a value indicating whether the object has been disposed of.
131126
/// </summary>

0 commit comments

Comments
 (0)