-
Notifications
You must be signed in to change notification settings - Fork 254
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
[NUI] Add WebView FeedMouseWheel as hidden api #6518
Conversation
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.BaseComponents.WebView::FeedMouseWheel(System.Boolean,System.Int32,System.Int32,System.Int32)
|
4846d45
to
29415e4
Compare
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.BaseComponents.WebView::FeedMouseWheel(System.Boolean,System.Int32,System.Int32,System.Int32)
|
@@ -142,8 +142,10 @@ public void Dispose() | |||
/// </summary> | |||
public void Exit() | |||
{ | |||
Tizen.Log.Error("NUI", "NUICoreBackend.Exit() !"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the error log level correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are correct. However, on the GBM TV target, logs at the error and fatal levels are visible. Due to the request from the GBM user, I had to include debugging logs at the error and fatal levels, although it was not ideal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about adding some comments on why these logs are Error
for the history?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for the review.
I have added some comments by following your review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for updating it ;)
- Add some logs in NUICoreBackend.Exit() by request from GBM
29415e4
to
4040ac0
Compare
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.BaseComponents.WebView::FeedMouseWheel(System.Boolean,System.Int32,System.Int32,System.Int32)
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description of Change
[NUI] Add WebView FeedMouseWheel as hidden api
should be released with the following dali patches:
[Tizen] Add WebView FeedMouseWheel as hidden api
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-adaptor/+/316591
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-toolkit/+/316592
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-extension/+/316593
https://review.tizen.org/gerrit/c/platform/core/uifw/dali-csharp-binder/+/316594
Add some logs in NUICoreBackend.Exit() by request from GBM
API Changes
nothing