summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2017-03-03 10:20:53 -0800
committerMuller, Alexander (A.) <amulle19@ford.com>2017-03-03 10:20:53 -0800
commit278f7aa1a82a7aff42f58b9814392fca6bc69723 (patch)
tree1c03117dcc4230eeff48b1294ae7fdf1a3cb01b9
parent41b56f5f6aa3782c86af79ac8142a942ae795c0e (diff)
downloadsdl_ios-feature/issue_559_projection.tar.gz
Added support for Projection HMI Type.feature/issue_559_projection
-rw-r--r--SmartDeviceLink/SDLAppHMIType.h5
-rw-r--r--SmartDeviceLink/SDLAppHMIType.m1
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLAppHMITypeSpec.m1
3 files changed, 7 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLAppHMIType.h b/SmartDeviceLink/SDLAppHMIType.h
index a7277c36a..efba22f84 100644
--- a/SmartDeviceLink/SDLAppHMIType.h
+++ b/SmartDeviceLink/SDLAppHMIType.h
@@ -46,6 +46,11 @@ extern SDLAppHMIType const SDLAppHMITypeInformation;
*/
extern SDLAppHMIType const SDLAppHMITypeSocial;
+/**
+ * @abstract Projection Streaming App
+ */
+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"));