Merge branch working into tizen
[platform/framework/web/wrt.git] / src / view / common / scheme_action_map_data.h
index 8537f93..1100493 100644 (file)
@@ -44,15 +44,9 @@ enum UriAction {
  *           value "_new" is also treated this way). Tizen won't satisfy this
  *           requirement. It should open new windows in WRT.
  *
- * Multiview - Not supported in WAC application. Therefore opening WIDGET scheme
- *           in new window will result in launching appssvc, which won't be able
- *           to handle it. The correct behaviour has to be defined. In case of
- *           Tizen, new window will be opened in WRT.
- *
  * Video - RSTP is handled by video player.
  *
- * File scheme - FILE scheme has to be handled by WRT with exception to new
- *           window in WAC application (no support for multiple views)
+ * File scheme - FILE scheme has to be handled by WRT
  *
  * WS-1510/20/30/40/50 - All remaining cases are always handled by appsvc
  */
@@ -62,6 +56,7 @@ const UriAction g_tizenActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = {
     //  TOP_LEVEL           FRAME_LEVEL         NEW_WINDOW
     { URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT },           // FILE
     { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // SMS
+    { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // SMSTO
     { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // MMSTO
     { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // MAILTO
     { URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT },        // DATA
@@ -75,22 +70,5 @@ const UriAction g_tizenActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = {
     { URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO }      // RTSP
 };
 
-// WAC
-const UriAction g_wacActionMap[Scheme::COUNT][SchemeActionMap::COUNT] = {
-    //  TOP_LEVEL           FRAME_LEVEL         NEW_WINDOW
-    { URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC },        // FILE
-    { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // SMS
-    { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // MMSTO
-    { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // MAILTO
-    { URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_WRT },        // DATA
-    { URI_ACTION_APPSVC, URI_ACTION_APPSVC, URI_ACTION_APPSVC },  // TEL
-    { URI_ACTION_APPSVC, URI_ACTION_WRT, URI_ACTION_APPSVC },     // HTTP
-    { URI_ACTION_APPSVC, URI_ACTION_WRT, URI_ACTION_APPSVC },     // HTTPS
-    { URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC },        // WIDGET
-#ifdef APP_SCHEME_ENABLED
-    { URI_ACTION_WRT, URI_ACTION_WRT, URI_ACTION_APPSVC },        // APP
-#endif
-    { URI_ACTION_VIDEO, URI_ACTION_VIDEO, URI_ACTION_VIDEO }      // RTSP
-};
 }
 }