X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fview%2Fcommon%2Fscheme_action_map_data.h;h=1100493777a2aa7d79cbbfae4208f07e0a3db497;hb=6f29260d365e5d81caab020c1430d61e7ab40b51;hp=8537f932dd165a8aacb5d8b8ae6fb12b363e5b6d;hpb=4d2f197e1242d2ede388494cb69382e32e529cb5;p=platform%2Fframework%2Fweb%2Fwrt.git diff --git a/src/view/common/scheme_action_map_data.h b/src/view/common/scheme_action_map_data.h index 8537f93..1100493 100644 --- a/src/view/common/scheme_action_map_data.h +++ b/src/view/common/scheme_action_map_data.h @@ -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 -}; } }