From: dongsug.song Date: Mon, 26 Aug 2024 04:19:29 +0000 (+0900) Subject: [NUI] Add missing privilege comments X-Git-Tag: submit/tizen/20240904.094149~1^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=576681c76c1931ec9d1e2fd759bbd50f929c2b6a;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Add missing privilege comments --- diff --git a/src/Tizen.NUI/src/public/Window/Window.cs b/src/Tizen.NUI/src/public/Window/Window.cs index 020608939..d00d5ccd5 100755 --- a/src/Tizen.NUI/src/public/Window/Window.cs +++ b/src/Tizen.NUI/src/public/Window/Window.cs @@ -869,6 +869,8 @@ namespace Tizen.NUI /// /// The notification window level. /// True if no error occurred, false otherwise. + /// http://tizen.org/privilege/window.priority.set + /// This exception can be thrown due to permission denied. /// 3 public bool SetNotificationLevel(NotificationLevel level) { @@ -923,6 +925,8 @@ namespace Tizen.NUI /// /// The screen mode. /// True if no error occurred, false otherwise. + /// http://tizen.org/privilege/display + /// This exception can be thrown due to permission denied. /// 4 public bool SetScreenOffMode(ScreenOffMode screenOffMode) { @@ -948,6 +952,8 @@ namespace Tizen.NUI /// /// The preferred brightness (0 to 100). /// True if no error occurred, false otherwise. + /// http://tizen.org/privilege/display + /// This exception can be thrown due to permission denied. /// 3 public bool SetBrightness(int brightness) { @@ -1105,6 +1111,8 @@ namespace Tizen.NUI /// /// The key code to grab. /// True if the grab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool GrabKeyTopmost(int DaliKey) { @@ -1119,6 +1127,8 @@ namespace Tizen.NUI /// /// The key code to ungrab. /// True if the ungrab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool UngrabKeyTopmost(int DaliKey) { @@ -1137,6 +1147,8 @@ namespace Tizen.NUI /// The key code to grab. /// The grab mode for the key. /// True if the grab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool GrabKey(int DaliKey, KeyGrabMode GrabMode) { @@ -1151,6 +1163,8 @@ namespace Tizen.NUI /// /// The key code to ungrab. /// True if the ungrab succeeds. + /// http://tizen.org/privilege/keygrab + /// This exception can be thrown due to permission denied. /// 3 public bool UngrabKey(int DaliKey) {