summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-01-03 08:51:52 -0500
committerNicoleYarroch <nicole@livio.io>2020-01-03 08:51:52 -0500
commit640c7c2ca1a39c1119641138ee09119edc7ef996 (patch)
tree41b854559777191516aee89d2fac5ba77ad8e158
parent12531d650f5a7e0f28430c30d3df2da288445738 (diff)
downloadsdl_ios-bugfix/issues_1480_1492_1496_1501_lockscreen_fixes.tar.gz
-rw-r--r--SmartDeviceLink/SDLLockScreenManager.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/SmartDeviceLink/SDLLockScreenManager.h b/SmartDeviceLink/SDLLockScreenManager.h
index 56ea270b3..3e5279878 100644
--- a/SmartDeviceLink/SDLLockScreenManager.h
+++ b/SmartDeviceLink/SDLLockScreenManager.h
@@ -16,18 +16,18 @@
NS_ASSUME_NONNULL_BEGIN
/// Manages presenting and dismissing the lock screen based on several settings:
-/// 1. The lock screen configuration set by the developer. If the set to the default configuration, the lock screen manager will show or hide the lockscreen based on the the current `hmiLevel` of the SDL app and the current driver distraction (DD) status. However, the developer can also set the lockscreen to always show or not show at all.
+/// 1. The lock screen configuration set by the developer. If the set to the default configuration, the lock screen manager will show or hide the lockscreen based on the the current HMILevel of the SDL app and the current driver distraction (DD) status. However, the developer can also set the lockscreen to always show or not show at all.
/// 2. Whether the passenger has dismissed the lockscreen (RPC v.6.0+). Once the passenger has dismissed the lockscreen, it will not be shown again during the same session.
///
-/// | LockScreenStatus | HMILevel | DD |
-/// |------------------|----------------|-----|
-/// | OFF | HMI_NONE | - |
-/// | OFF | HMI_BACKGROUND | OFF |
-/// | REQUIRED | HMI_BACKGROUND | ON |
-/// | OPTIONAL | HMI_FULL | OFF |
-/// | REQUIRED | HMI_FULL | ON |
-/// | OPTIONAL | HMI_LIMITED | OFF |
-/// | REQUIRED | HMI_LIMITED | ON |
+/// | HMI Level | DD | Lock Screen Status |
+/// |----------------|-----|--------------------|
+/// | HMI_NONE | - | OFF |
+/// | HMI_BACKGROUND | OFF | OFF |
+/// | HMI_BACKGROUND | ON | REQUIRED |
+/// | HMI_FULL | OFF | OPTIONAL |
+/// | HMI_FULL | ON | REQUIRED |
+/// | HMI_LIMITED | OFF | OPTIONAL |
+/// | HMI_LIMITED | ON | REQUIRED |
@interface SDLLockScreenManager : NSObject
/**