diff options
-rw-r--r-- | SmartDeviceLink/SDLAppHMIType.h | 5 | ||||
-rw-r--r-- | SmartDeviceLink/SDLAppHMIType.m | 1 | ||||
-rw-r--r-- | SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLAppHMIType.h b/SmartDeviceLink/SDLAppHMIType.h index a7277c36a..2c02fe498 100644 --- a/SmartDeviceLink/SDLAppHMIType.h +++ b/SmartDeviceLink/SDLAppHMIType.h @@ -46,6 +46,11 @@ extern SDLAppHMIType const SDLAppHMITypeInformation; */ extern SDLAppHMIType const SDLAppHMITypeSocial; +/** + * @abstract App dealing with Mobile Projection applications + */ +extern SDLAppHMIType const SDLAppHMITypeProjection; + extern SDLAppHMIType const SDLAppHMITypeBackgroundProcess; /** diff --git a/SmartDeviceLink/SDLAppHMIType.m b/SmartDeviceLink/SDLAppHMIType.m index 8c06cb60f..5ce899cf5 100644 --- a/SmartDeviceLink/SDLAppHMIType.m +++ b/SmartDeviceLink/SDLAppHMIType.m @@ -11,6 +11,7 @@ SDLAppHMIType const SDLAppHMITypeMessaging = @"MESSAGING"; SDLAppHMIType const SDLAppHMITypeNavigation = @"NAVIGATION"; SDLAppHMIType const SDLAppHMITypeInformation = @"INFORMATION"; SDLAppHMIType const SDLAppHMITypeSocial = @"SOCIAL"; +SDLAppHMIType const SDLAppHMITypeProjection = @"PROJECTION"; SDLAppHMIType const SDLAppHMITypeBackgroundProcess = @"BACKGROUND_PROCESS"; SDLAppHMIType const SDLAppHMITypeTesting = @"TESTING"; SDLAppHMIType const SDLAppHMITypeSystem = @"SYSTEM"; diff --git a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m index eb23c5ff8..037c569be 100644 --- a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m +++ b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m @@ -21,6 +21,7 @@ describe(@"Individual Enum Value Tests", ^ { expect(SDLAppHMITypeNavigation).to(equal(@"NAVIGATION")); expect(SDLAppHMITypeInformation).to(equal(@"INFORMATION")); expect(SDLAppHMITypeSocial).to(equal(@"SOCIAL")); + expect(SDLAppHMITypeProjection).to(equal(@"PROJECTION")); expect(SDLAppHMITypeBackgroundProcess).to(equal(@"BACKGROUND_PROCESS")); expect(SDLAppHMITypeTesting).to(equal(@"TESTING")); expect(SDLAppHMITypeSystem).to(equal(@"SYSTEM")); |