From 38da3038cde90e53b40557fb9c51438ba2b5b586 Mon Sep 17 00:00:00 2001 From: Jin-Woo Jeong Date: Wed, 23 Sep 2015 10:07:50 +0900 Subject: [PATCH] Modify common app control spec: remove 'support by default' statements Change-Id: I6f9115e49e1d848773ad2b0661c0892114b6469c --- .../html/native/app/common_appcontrol_n.htm | 50 ---------------------- 1 file changed, 50 deletions(-) diff --git a/org.tizen.guides/html/native/app/common_appcontrol_n.htm b/org.tizen.guides/html/native/app/common_appcontrol_n.htm index 8ae620b..b214bfe 100755 --- a/org.tizen.guides/html/native/app/common_appcontrol_n.htm +++ b/org.tizen.guides/html/native/app/common_appcontrol_n.htm @@ -100,16 +100,6 @@ app_control_destroy(app_control);

Loading a Web Page

To open a web page, use the APP_CONTROL_OPERATION_VIEW operation and specify the Web URL in the URI.

- - - - - - - - - -
Note
Tizen mobile platform provides this application control by default.

Figure: Loading a Web page

Loading a Web page

@@ -1310,16 +1300,6 @@ app_control_destroy(service);

Retrieve a specific type of file

To select any kind of file from the storage, use the APP_CONTROL_OPERATION_PICK operation with the corresponding MIME type. To give options for pick operation, refer to the extras defined below.

- - - - - - - - - -
Note
Tizen mobile platform provides this application control by default.

Operation

APP_CONTROL_OPERATION_PICK

URI

@@ -1798,16 +1778,6 @@ app_control_send_launch_request(service, NULL, NULL);

Multimedia

Play an audio/video file

You can play an audio/video file by using APP_CONTROL_OPERATION_VIEW operation with an URI. URI and MIME type are defined below. - - - - - - - - - -
Note
Tizen mobile platform provides this application control by default.

Operation

APP_CONTROL_OPERATION_VIEW

URI (Mandatory)

@@ -1878,16 +1848,6 @@ int play_audio_operation(const char* audio_uri)

View an image file

You can display an image file by using APP_CONTROL_OPERATION_VIEW operation with an URI. URI and MIME type are defined below.

- - - - - - - - - -
Note
Tizen mobile platform provides this application control by default.

Operation

APP_CONTROL_OPERATION_VIEW

URI (Mandatory)

@@ -1948,16 +1908,6 @@ int view_image_operation(const char* image_uri)

Retrieve a media file

You can retrieve a specific type of media file by using APP_CONTROL_OPERATION_PICK operation. URI, MIME type, and extra for input and output are defined below.

- - - - - - - - - -
Note
Tizen mobile platform provides this application control by default.

Operation

APP_CONTROL_OPERATION_PICK

URI

-- 2.7.4