Remove conditional statements for M/W profile 67/306367/3
authoryh106.jung <yh106.jung@samsung.com>
Tue, 20 Feb 2024 23:46:48 +0000 (15:46 -0800)
committerBot Blink <blinkbot@samsung.com>
Wed, 21 Feb 2024 09:24:04 +0000 (09:24 +0000)
Since 8.0, Tizen supports a single set native of APIs.
So, this patch removes conditional statements for Mobile/Wearable
profile from ewk headers.

Change-Id: Id1e419e6fcf81cf0da5aa9c3d874f151b718d396
Signed-off-by: yh106.jung <yh106.jung@samsung.com>
15 files changed:
tizen_src/ewk/efl_integration/public/ewk_autofill_credit_card_internal.h
tizen_src/ewk/efl_integration/public/ewk_autofill_profile.h
tizen_src/ewk/efl_integration/public/ewk_back_forward_list.h
tizen_src/ewk/efl_integration/public/ewk_back_forward_list_item.h
tizen_src/ewk/efl_integration/public/ewk_context.h
tizen_src/ewk/efl_integration/public/ewk_context_menu.h
tizen_src/ewk/efl_integration/public/ewk_cookie_manager.h
tizen_src/ewk/efl_integration/public/ewk_error.h
tizen_src/ewk/efl_integration/public/ewk_geolocation.h
tizen_src/ewk/efl_integration/public/ewk_main.h
tizen_src/ewk/efl_integration/public/ewk_policy_decision.h
tizen_src/ewk/efl_integration/public/ewk_security_origin.h
tizen_src/ewk/efl_integration/public/ewk_settings.h
tizen_src/ewk/efl_integration/public/ewk_settings_product.h
tizen_src/ewk/efl_integration/public/ewk_view.h

index 9aa25bb..bffea7e 100644 (file)
@@ -37,12 +37,10 @@ extern "C" {
  */
 
 /**
- * @if MOBILE
  * \enum   _Ewk_Autofill_Credit_Card_Data_Type
  * @brief  Enumeration that provides an option to autofill credit_card data types.
  *
  * @since_tizen 4.0
- * @endif
  */
 
 enum _Ewk_Autofill_Credit_Card_Data_Type {
@@ -55,25 +53,20 @@ enum _Ewk_Autofill_Credit_Card_Data_Type {
 };
 
 /**
- * @if MOBILE
  * @brief Enumeration that creates a type name for the Ewk_Autofill_Credit_Card_Data_Type.
  *
  * @since_tizen 4.0
- * @endif
  */
 typedef enum _Ewk_Autofill_Credit_Card_Data_Type Ewk_Autofill_Credit_Card_Data_Type;
 
 /**
- * @if MOBILE
  * @brief The structure type that creates a type name for #Ewk_Autofill_CreditCard.
  *
  * @since_tizen 4.0
- * @endif
  */
 typedef struct _Ewk_Autofill_CreditCard Ewk_Autofill_CreditCard;
 
 /**
- * @if MOBILE
  * @brief Creates a new credit_card
  *
  * The created credit_card must be deleted by ewk_autofill_credit_card_delete
@@ -85,12 +78,10 @@ typedef struct _Ewk_Autofill_CreditCard Ewk_Autofill_CreditCard;
  *
  * @see ewk_autofill_credit_card_data_set
  * @see ewk_autofill_credit_card_delete
- * @endif
  */
 EXPORT_API Ewk_Autofill_CreditCard* ewk_autofill_credit_card_new(void);
 
 /**
- * @if MOBILE
  * @brief Deletes a given credit_card
  *
  * The API will delete the a particular credit_card only from the memory.
@@ -104,12 +95,10 @@ EXPORT_API Ewk_Autofill_CreditCard* ewk_autofill_credit_card_new(void);
  * @see ewk_autofill_credit_card_new
  * @see ewk_context_form_autofill_credit_card_get
  * @see ewk_context_form_autofill_credit_card_remove
- * @endif
  */
 EXPORT_API void ewk_autofill_credit_card_delete(Ewk_Autofill_CreditCard* card);
 
 /**
- * @if MOBILE
  * @brief Sets the data in the credit_card created by ewk_autofill_credit_card_new
  *
  * The data set by this function is set locally. To save it to database use
@@ -124,12 +113,10 @@ EXPORT_API void ewk_autofill_credit_card_delete(Ewk_Autofill_CreditCard* card);
  * @see ewk_autofill_credit_card_data_get
  * @see Ewk_Autofill_Credit_Card_Data_Type
  * @see ewk_context_form_autofill_credit_card_add
- * @endif
  */
 EXPORT_API void ewk_autofill_credit_card_data_set(Ewk_Autofill_CreditCard* card, Ewk_Autofill_Credit_Card_Data_Type type, const char* value);
 
 /**
- * @if MOBILE
  * @brief Gets the id attribute value from a given credit_card
  *
  * The credit_card obtained from ewk_context_form_autofill_credit_card_get will be used
@@ -144,12 +131,10 @@ EXPORT_API void ewk_autofill_credit_card_data_set(Ewk_Autofill_CreditCard* card,
  * @see ewk_autofill_credit_card_new
  * @see ewk_context_form_autofill_credit_card_get
  * @see ewk_context_form_autofill_credit_card_get_all
- * @endif
  */
 EXPORT_API unsigned ewk_autofill_credit_card_id_get(Ewk_Autofill_CreditCard* card);
 
 /**
- * @if MOBILE
  * @brief Gets the attribute value from a given credit_card
  *
  * The credit_card obtained from ewk_context_form_autofill_credit_card_get will be used
@@ -166,7 +151,6 @@ EXPORT_API unsigned ewk_autofill_credit_card_id_get(Ewk_Autofill_CreditCard* car
  * @see ewk_autofill_credit_card_new
  * @see ewk_context_form_autofill_credit_card_get
  * @see ewk_context_form_autofill_credit_card_get_all
- * @endif
  */
 EXPORT_API Eina_Stringshare* ewk_autofill_credit_card_data_get(Ewk_Autofill_CreditCard* credit_card, Ewk_Autofill_Credit_Card_Data_Type type);
 
index f043b47..035db09 100644 (file)
@@ -37,12 +37,10 @@ extern "C" {
  */
 
 /**
- * @if MOBILE
  * \enum   _Ewk_Autofill_Profile_Data_Type
  * @brief  Enumeration that provides an option to autofill profile data types.
  *
  * @since_tizen 2.4
- * @endif
  */
 enum _Ewk_Autofill_Profile_Data_Type {
     EWK_PROFILE_ID = 0,  /**< Id */
@@ -60,25 +58,20 @@ enum _Ewk_Autofill_Profile_Data_Type {
 };
 
 /**
- * @if MOBILE
  * @brief Enumeration that creates a type name for the Ewk_Autofill_Profile_Data_Type.
  *
  * @since_tizen 2.4
- * @endif
  */
 typedef enum _Ewk_Autofill_Profile_Data_Type Ewk_Autofill_Profile_Data_Type;
 
 /**
- * @if MOBILE
  * @brief The structure type that creates a type name for #Ewk_Autofill_Profile.
  *
  * @since_tizen 2.4
- * @endif
  */
 typedef struct _Ewk_Autofill_Profile Ewk_Autofill_Profile;
 
 /**
- * @if MOBILE
  * @brief Creates a new profile
  *
  * The created profile must be deleted by ewk_autofill_profile_delete
@@ -90,12 +83,10 @@ typedef struct _Ewk_Autofill_Profile Ewk_Autofill_Profile;
  *
  * @see ewk_autofill_profile_data_set
  * @see ewk_autofill_profile_delete
- * @endif
  */
 EXPORT_API Ewk_Autofill_Profile* ewk_autofill_profile_new(void);
 
 /**
- * @if MOBILE
  * @brief Deletes a given profile
  *
  * The API will delete the a particular profile only from the memory.
@@ -109,12 +100,10 @@ EXPORT_API Ewk_Autofill_Profile* ewk_autofill_profile_new(void);
  * @see ewk_autofill_profile_new
  * @see ewk_context_form_autofill_profile_get
  * @see ewk_context_form_autofill_profile_remove
- * @endif
  */
 EXPORT_API void ewk_autofill_profile_delete(Ewk_Autofill_Profile* profile);
 
 /**
- * @if MOBILE
  * @brief Sets the data in the profile created by ewk_autofill_profile_new
  *
  * The data set by this function is set locally. To save it to database use
@@ -129,12 +118,10 @@ EXPORT_API void ewk_autofill_profile_delete(Ewk_Autofill_Profile* profile);
  * @see ewk_autofill_profile_data_get
  * @see Ewk_Autofill_Profile_Data_Type
  * @see ewk_context_form_autofill_profile_add
- * @endif
  */
 EXPORT_API void ewk_autofill_profile_data_set(Ewk_Autofill_Profile* profile, Ewk_Autofill_Profile_Data_Type name, const char* value);
 
 /**
- * @if MOBILE
  * @brief Gets the id attribute value from a given profile
  *
  * The profile obtained from ewk_context_form_autofill_profile_get will be used
@@ -149,12 +136,10 @@ EXPORT_API void ewk_autofill_profile_data_set(Ewk_Autofill_Profile* profile, Ewk
  * @see ewk_autofill_profile_new
  * @see ewk_context_form_autofill_profile_get
  * @see ewk_context_form_autofill_profile_get_all
- * @endif
  */
 EXPORT_API unsigned ewk_autofill_profile_id_get(Ewk_Autofill_Profile* profile);
 
 /**
- * @if MOBILE
  * @brief Gets the attribute value from a given profile
  *
  * The profile obtained from ewk_context_form_autofill_profile_get will be used
@@ -170,7 +155,6 @@ EXPORT_API unsigned ewk_autofill_profile_id_get(Ewk_Autofill_Profile* profile);
  * @see ewk_autofill_profile_new
  * @see ewk_context_form_autofill_profile_get
  * @see ewk_context_form_autofill_profile_get_all
- * @endif
  */
 EXPORT_API const char* ewk_autofill_profile_data_get(Ewk_Autofill_Profile* profile, Ewk_Autofill_Profile_Data_Type name);
 
index fe48045..8fe30db 100644 (file)
@@ -42,14 +42,14 @@ extern "C" {
 /**
  * @brief The structure type that creates a type name for
  *        Ewk_Back_Forward_List.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct _Ewk_Back_Forward_List Ewk_Back_Forward_List;
 
 /**
  * @brief Returns the current item in the @a list.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  *
@@ -61,7 +61,7 @@ EXPORT_API Ewk_Back_Forward_List_Item* ewk_back_forward_list_current_item_get(co
 /**
  * @brief Returns the item that precedes the current item in the @a list.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  *
@@ -73,7 +73,7 @@ EXPORT_API Ewk_Back_Forward_List_Item* ewk_back_forward_list_previous_item_get(c
 /**
  * @brief Returns the item that follows the current item in the @a list.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  *
@@ -85,7 +85,7 @@ EXPORT_API Ewk_Back_Forward_List_Item* ewk_back_forward_list_next_item_get(const
 /**
  * @brief Returns the item at a given @a index relative to the current item.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  * @param[in] index The index of the item
@@ -99,7 +99,7 @@ EXPORT_API Ewk_Back_Forward_List_Item* ewk_back_forward_list_item_at_index_get(c
  * @brief Returns the length of the back-forward list including the current
  *        item.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  *
@@ -117,7 +117,7 @@ EXPORT_API unsigned ewk_back_forward_list_count(Ewk_Back_Forward_List* list);
  *          If @a limit is equal to @c -1 all the items preceding the current
  *          item are returned.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  * @param[in] limit The number of items to retrieve
@@ -138,7 +138,7 @@ EXPORT_API Eina_List* ewk_back_forward_list_n_back_items_copy(const Ewk_Back_For
  *          If @a limit is equal to @c -1 all the items preceding the current
  *          item are returned.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] list The back-forward list instance
  * @param[in] limit The number of items to retrieve
index 1cfdf08..dea0391 100644 (file)
@@ -40,14 +40,14 @@ extern "C" {
 /**
  * @brief The structure type that creates a type name for
  *        Ewk_Back_Forward_List_Item.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct _Ewk_Back_Forward_List_Item Ewk_Back_Forward_List_Item;
 
 /**
  * @brief Increases the reference count of the given object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] item The back-forward list item instance to increase the reference
  *            count
@@ -63,7 +63,7 @@ EXPORT_API Ewk_Back_Forward_List_Item* ewk_back_forward_list_item_ref(Ewk_Back_F
  *
  * @details When the reference count reaches @c 0, the item is freed.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] item The back-forward list item instance to decrease the reference
  *            count
@@ -76,7 +76,7 @@ EXPORT_API void ewk_back_forward_list_item_unref(Ewk_Back_Forward_List_Item* ite
  * @details The returned URL may differ from the original URL (For example,
  *          if the page is redirected).
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] item The back-forward list item instance
  *
@@ -94,7 +94,7 @@ EXPORT_API const char* ewk_back_forward_list_item_url_get(const Ewk_Back_Forward
 /**
  * @brief Returns the title of the item.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] item The back-forward list item instance
  *
@@ -110,7 +110,7 @@ EXPORT_API const char* ewk_back_forward_list_item_title_get(const Ewk_Back_Forwa
 /**
  * @brief Returns the original URL of the item.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] item The back-forward list item instance
  *
index 4dc1810..463ea5e 100644 (file)
@@ -55,7 +55,7 @@ extern "C" {
 
 /**
  * @brief The structure type that creates a type name for #Ewk_Context.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct Ewk_Context Ewk_Context;
 
@@ -72,14 +72,14 @@ enum _Ewk_Cache_Model {
 
 /**
  * @brief The structure type that creates a type name for Ewk_Cache_Model.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  */
 typedef enum _Ewk_Cache_Model Ewk_Cache_Model;
 
 /**
  * @brief Gets the cookie manager instance for this @a context.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] context The context object to query
  *
@@ -89,7 +89,6 @@ typedef enum _Ewk_Cache_Model Ewk_Cache_Model;
 EXPORT_API Ewk_Cookie_Manager* ewk_context_cookie_manager_get(const Ewk_Context* context);
 
 /**
- * @if MOBILE
  * @brief Requests for deleting all web application caches.
  *
  * @since_tizen 2.4
@@ -97,7 +96,6 @@ EXPORT_API Ewk_Cookie_Manager* ewk_context_cookie_manager_get(const Ewk_Context*
  * @param[in] context Context object
  *
  * @return @c EINA_TRUE on success, otherwise @c EINA FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_application_cache_delete_all(Ewk_Context* context);
 
@@ -106,7 +104,7 @@ EXPORT_API Eina_Bool ewk_context_application_cache_delete_all(Ewk_Context* conte
  *
  * The default cache option is #EWK_CACHE_MODEL_DOCUMENT_VIEWER.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] context The context object
  * @param[in] model The cache model
@@ -119,7 +117,7 @@ EXPORT_API Eina_Bool ewk_context_cache_model_set(Ewk_Context* context, Ewk_Cache
 /**
  * @brief Returns the cache model type.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] context The context object
  *
@@ -128,7 +126,6 @@ EXPORT_API Eina_Bool ewk_context_cache_model_set(Ewk_Context* context, Ewk_Cache
 EXPORT_API Ewk_Cache_Model ewk_context_cache_model_get(const Ewk_Context* context);
 
 /**
- * @if MOBILE
  * @brief Saves the created profile into permanent storage
  *
  * The profile used to save must be created by ewk_autofill_profile_new.
@@ -143,12 +140,10 @@ EXPORT_API Ewk_Cache_Model ewk_context_cache_model_get(const Ewk_Context* contex
  *         @c EINA_FALSE
  *
  * @see ewk_autofill_profile_new
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_form_autofill_profile_add(Ewk_Context* context, Ewk_Autofill_Profile* profile);
 
 /**
- * @if MOBILE
  * @brief Gets the existing profile for given index
  *
  * @since_tizen 2.4
@@ -159,12 +154,10 @@ EXPORT_API Eina_Bool ewk_context_form_autofill_profile_add(Ewk_Context* context,
  * @return @c Ewk_Autofill_Profile if profile exists, otherwise @c NULL
  *
  * @see ewk_autofill_profile_delete
- * @endif
  */
 EXPORT_API Ewk_Autofill_Profile* ewk_context_form_autofill_profile_get(Ewk_Context* context, unsigned id);
 
 /**
- * @if MOBILE
  * @brief Gets a list of all existing profiles
  *
  * The obtained profile must be deleted by ewk_autofill_profile_delete.
@@ -176,12 +169,10 @@ EXPORT_API Ewk_Autofill_Profile* ewk_context_form_autofill_profile_get(Ewk_Conte
  * @return @c Eina_List of Ewk_Autofill_Profile, otherwise @c NULL
  *
  * @see ewk_autofill_profile_delete
- * @endif
  */
 EXPORT_API Eina_List* ewk_context_form_autofill_profile_get_all(Ewk_Context* context);
 
 /**
- * @if MOBILE
  * @brief Sets the given profile for the given id
  *
  * Data can be added to the created profile by ewk_autofill_profile_data_set.
@@ -197,12 +188,10 @@ EXPORT_API Eina_List* ewk_context_form_autofill_profile_get_all(Ewk_Context* con
  *
  * @see ewk_autofill_profile_new
  * @see ewk_context_form_autofill_profile_add
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_form_autofill_profile_set(Ewk_Context* context, unsigned id, Ewk_Autofill_Profile* profile);
 
 /**
- * @if MOBILE
  * @brief Removes Autofill Form profile completely
  *
  * @since_tizen 2.4
@@ -214,29 +203,24 @@ EXPORT_API Eina_Bool ewk_context_form_autofill_profile_set(Ewk_Context* context,
            @c EINA_FALSE
  *
  * @see ewk_context_form_autofill_profile_get_all
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_form_autofill_profile_remove(Ewk_Context* context, unsigned id);
 
 /**
- * @if MOBILE
  * @brief Deletes all candidate form data from DB
  *
  * @since_tizen 2.4
  *
  * @param[in] context Context object
- * @endif
  */
 EXPORT_API void ewk_context_form_candidate_data_delete_all(Ewk_Context* context);
 
 /**
- * @if MOBILE
  * @brief Deletes whole password data from DB
  *
  * @since_tizen 2.4
  *
  * @param context Context object
- * @endif
  */
 EXPORT_API void ewk_context_form_password_data_delete_all(Ewk_Context* context);
 
@@ -245,14 +229,13 @@ EXPORT_API void ewk_context_form_password_data_delete_all(Ewk_Context* context);
  *        all resources cached in memory\n
  *        such as images, CSS, JavaScript, XSL, and fonts for @a context.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] context The context object to clear all resource caches
  */
 EXPORT_API void ewk_context_resource_cache_clear(Ewk_Context* context);
 
 /**
- * @if MOBILE
  * @brief Requests to get image representing the given URL.
  *
  * @since_tizen 2.4
@@ -263,12 +246,10 @@ EXPORT_API void ewk_context_resource_cache_clear(Ewk_Context* context);
  *            must not be @c 0
  *
  * @return @c Evas_Object instance, otherwise @c 0
- * @endif
  */
 EXPORT_API Evas_Object* ewk_context_icon_database_icon_object_add(Ewk_Context* context, const char* uri, Evas* canvas);
 
 /**
- * @if MOBILE
  * @brief Requests for deleting all web indexed databases.
  *
  * @since_tizen 2.4
@@ -276,12 +257,10 @@ EXPORT_API Evas_Object* ewk_context_icon_database_icon_object_add(Ewk_Context* c
  * @param[in] context Context object
  *
  * @return @c EINA_TRUE on success, otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_web_indexed_database_delete_all(Ewk_Context* context);
 
 /**
- * @if MOBILE
  * @brief Deletes web storage.
  *
  * @details This function does not ensure that all data will be removed.
@@ -292,7 +271,6 @@ EXPORT_API Eina_Bool ewk_context_web_indexed_database_delete_all(Ewk_Context* co
  * @param[in] context Context object
  *
  * @return @c EINA_TRUE on success, otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_web_storage_delete_all(Ewk_Context* context);
 
index bf01ce4..a1a1db0 100644 (file)
@@ -40,7 +40,7 @@ extern "C" {
  * \enum    _Ewk_Context_Menu_Item_Tag
  * @brief   Enumeration that provides the tags of items for the context menu.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  */
 enum _Ewk_Context_Menu_Item_Tag{
     EWK_CONTEXT_MENU_ITEM_TAG_NO_ACTION = 0,  /**< No action */
@@ -140,26 +140,26 @@ enum _Ewk_Context_Menu_Item_Tag{
 
 /**
  * @brief The structure type that creates a type name for Ewk_Context_Menu_Item_Tag.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  */
 typedef uint32_t Ewk_Context_Menu_Item_Tag;
 
 /**
  * @brief The structure type that creates a type name for _Ewk_Context_Menu.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  */
 typedef struct _Ewk_Context_Menu Ewk_Context_Menu;
 
 /**
  * @brief The structure type that creates a type name for _Ewk_Context_Menu_Item.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  */
 typedef struct _Ewk_Context_Menu_Item Ewk_Context_Menu_Item;
 
 /**
  * @brief Counts the number of the context menu item.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  *
  * @param[in] menu The context menu object
  *
@@ -170,7 +170,7 @@ EXPORT_API unsigned ewk_context_menu_item_count(Ewk_Context_Menu* menu);
 /**
  * @brief Returns the nth item in a context menu.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  *
  * @param[in] menu The context menu object
  * @param[in] n The number of the item
@@ -185,7 +185,7 @@ EXPORT_API Ewk_Context_Menu_Item* ewk_context_menu_nth_item_get(Ewk_Context_Menu
  * @remarks If all context menu items are removed, neither context menu nor\n
  *          selection handles will be shown.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  *
  * @param[in] menu The context menu object
  * @param[in] item The context menu item to remove
@@ -196,7 +196,6 @@ EXPORT_API Ewk_Context_Menu_Item* ewk_context_menu_nth_item_get(Ewk_Context_Menu
 EXPORT_API Eina_Bool ewk_context_menu_item_remove(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item* item);
 
 /**
- * @if MOBILE
  * @brief Adds the context menu item to the context menu object.
  *
  * @since_tizen 2.3
@@ -209,12 +208,10 @@ EXPORT_API Eina_Bool ewk_context_menu_item_remove(Ewk_Context_Menu* menu, Ewk_Co
  *
  * @return @c EINA_TRUE on successful request,\n
  *         otherwise @c EINA_FALSE on failure
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_menu_item_append_as_action(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item_Tag tag, const char* title, Eina_Bool enabled);
 
 /**
- * @if MOBILE
  * @brief Adds the context menu item to the context menu object.
  *
  * @since_tizen 2.3
@@ -228,14 +225,13 @@ EXPORT_API Eina_Bool ewk_context_menu_item_append_as_action(Ewk_Context_Menu* me
  *
  * @return @c EINA_TRUE on successful request,\n
  *         otherwise @c EINA_FALSE on failure
- * @endif
  */
 EXPORT_API Eina_Bool ewk_context_menu_item_append(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item_Tag tag, const char* title, const char* icon_file, Eina_Bool enabled);
 
 /**
  * @brief Returns the tag of context menu item.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.3
  *
  * @param[in] item The context menu item object
  *
@@ -244,7 +240,6 @@ EXPORT_API Eina_Bool ewk_context_menu_item_append(Ewk_Context_Menu* menu, Ewk_Co
 EXPORT_API Ewk_Context_Menu_Item_Tag ewk_context_menu_item_tag_get(Ewk_Context_Menu_Item* item);
 
 /**
- * @if MOBILE
  * @brief Returns the link url string of context menu item.
  *
  * @since_tizen 2.3
@@ -253,12 +248,10 @@ EXPORT_API Ewk_Context_Menu_Item_Tag ewk_context_menu_item_tag_get(Ewk_Context_M
  *
  * @return The current link url string on success,\n
  *         otherwise @c 0 on failure
- * @endif
  */
 EXPORT_API const char* ewk_context_menu_item_link_url_get(Ewk_Context_Menu_Item* item);
 
 /**
- * @if MOBILE
  * @brief Returns the image url string of context menu item.
  *
  * @since_tizen 2.3
@@ -267,7 +260,6 @@ EXPORT_API const char* ewk_context_menu_item_link_url_get(Ewk_Context_Menu_Item*
  *
  * @return The current image url string on success,\n
  *         otherwise @c 0 on failure
- * @endif
  */
 EXPORT_API const char* ewk_context_menu_item_image_url_get(Ewk_Context_Menu_Item* item);
 
index f4a0eaa..31b5d6e 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 
 /**
  * @brief The structure type that creates a type name for #Ewk_Cookie_Manager.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct Ewk_Cookie_Manager Ewk_Cookie_Manager;
 
@@ -47,7 +47,7 @@ typedef struct Ewk_Cookie_Manager Ewk_Cookie_Manager;
  * \enum    Ewk_Cookie_Accept_Policy
  *
  * @brief   Enumeration that contains accept policies for the cookies.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 enum Ewk_Cookie_Accept_Policy {
     EWK_COOKIE_ACCEPT_POLICY_ALWAYS,        /**< Accepts every cookie sent from any page */
@@ -57,7 +57,7 @@ enum Ewk_Cookie_Accept_Policy {
 
 /**
  * @brief Enumeration that creates a type name for the Ewk_Cookie_Accept_Policy.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum Ewk_Cookie_Accept_Policy Ewk_Cookie_Accept_Policy;
 
@@ -67,7 +67,7 @@ typedef enum Ewk_Cookie_Accept_Policy Ewk_Cookie_Accept_Policy;
  * @details By default, only cookies set by the main document loaded are
  *          accepted.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] manager The cookie manager to update
  * @param[in] policy A #Ewk_Cookie_Accept_Policy
@@ -77,7 +77,7 @@ EXPORT_API void ewk_cookie_manager_accept_policy_set(Ewk_Cookie_Manager* manager
 /**
  * @brief Called for use with ewk_cookie_manager_accept_policy_async_get().
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy A #Ewk_Cookie_Accept_Policy
  * @param[in] event_info The user data that will be passed when
@@ -91,7 +91,7 @@ typedef void (*Ewk_Cookie_Manager_Policy_Async_Get_Cb)(Ewk_Cookie_Accept_Policy
  * @details By default, only cookies set by the main document loaded are
  *          accepted.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] manager The cookie manager to query
  * @param[in] callback The function to call when the policy is received
@@ -102,7 +102,7 @@ EXPORT_API void ewk_cookie_manager_accept_policy_async_get(const Ewk_Cookie_Mana
 /**
  * @brief Deletes all the cookies of @a manager.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] manager The cookie manager to update
  */
index 7950cae..84ae2f5 100644 (file)
@@ -38,19 +38,15 @@ extern "C" {
  */
 
 /**
- * @if MOBILE
  * @brief The structure type that creates a type name for #Ewk_Error.
  * @since_tizen 2.3
- * @endif
  */
 typedef struct _Ewk_Error Ewk_Error;
 
 /**
- * @if MOBILE
  * \enum   Ewk_Error_Code
  * @brief  Enumeration that provides an option to error codes.
  * @since_tizen 2.3
- * @endif
  */
 typedef enum {
   EWK_ERROR_CODE_UNKNOWN,               /* Unknown */
@@ -71,7 +67,6 @@ typedef enum {
 } Ewk_Error_Code;
 
 /**
- * @if MOBILE
  * @brief Query failing URL for this error.
  *
  * @details URL that failed loading.
@@ -85,12 +80,10 @@ typedef enum {
  *         save yourself some cpu cycles and use\n
  *         eina_stringshare_ref() instead of eina_stringshare_add() or\n
  *         strdup()
- * @endif
  */
 EXPORT_API const char* ewk_error_url_get(const Ewk_Error* error);
 
 /**
- * @if MOBILE
  * @brief Query the error code.
  *
  * @since_tizen 2.3
@@ -98,12 +91,10 @@ EXPORT_API const char* ewk_error_url_get(const Ewk_Error* error);
  * @param[in] error The error object to query
  *
  * @return The error code #Ewk_Error_Code
- * @endif
  */
 EXPORT_API int ewk_error_code_get(const Ewk_Error* error);
 
 /**
- * @if MOBILE
  * @brief Query description for this error.
  *
  * @since_tizen 2.3
@@ -115,12 +106,10 @@ EXPORT_API int ewk_error_code_get(const Ewk_Error* error);
  *         save yourself some cpu cycles and use\n
  *         eina_stringshare_ref() instead of eina_stringshare_add() or\n
  *         strdup()
- * @endif
  */
 EXPORT_API const char* ewk_error_description_get(const Ewk_Error* error);
 
 /**
- * @if MOBILE
  * @brief Query if error should be treated as a cancellation.
  *
  * @since_tizen 2.3
@@ -129,7 +118,6 @@ EXPORT_API const char* ewk_error_description_get(const Ewk_Error* error);
  *
  * @return @c EINA_TRUE if this error should be treated as a cancellation\n
  *         otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_error_cancellation_get(const Ewk_Error* error);
 
index aa8f3cf..5b29cca 100644 (file)
@@ -40,14 +40,14 @@ extern "C" {
 /**
  * @brief The structure type that creates a type name for #Ewk_Geolocation_Permission_Request.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef struct _Ewk_Geolocation_Permission_Request Ewk_Geolocation_Permission_Request;
 
 /**
  * @brief Requests for getting origin of geolocation permission request.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  *
  * @param[in] request Ewk_Geolocation_Permission_Request object to get origin
  *
index ad37e90..87618a4 100644 (file)
@@ -45,7 +45,7 @@ extern "C" {
  * - Initializes components needed by EFL,\n
  * - Increases a reference count of Chromium's instance.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @return A reference count of Chromium's instance on success,\n
  *         otherwise @c 0 on failure
@@ -59,7 +59,7 @@ EXPORT_API int ewk_init(void);
  * @details If the reference count reaches @c 0, Chromium's instance is
  *          destroyed.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @return A reference count of Chromium's instance
  */
index b82e68e..480bad5 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 /**
  * \enum   _Ewk_Policy_Decision_Type
  * @brief  Enumeration that provides an option to policy decision types.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 enum _Ewk_Policy_Decision_Type {
     EWK_POLICY_DECISION_USE, /**< Use */
@@ -49,20 +49,20 @@ enum _Ewk_Policy_Decision_Type {
 
 /**
  * @brief Enumeration that creates a type name for the Ewk_Policy_Decision_Type.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum _Ewk_Policy_Decision_Type Ewk_Policy_Decision_Type;
 
 /**
  * @brief The structure type that creates a type name for Ewk_Policy_Decision.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct _Ewk_Policy_Decision Ewk_Policy_Decision;
 
 /**
  * \enum   _Ewk_Policy_Navigation_Type
  * @brief  Enumeration that provides an option to policy navigation types.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 enum _Ewk_Policy_Navigation_Type {
     EWK_POLICY_NAVIGATION_TYPE_LINK_CLICKED = 0, /**< Link clicked */
@@ -75,14 +75,14 @@ enum _Ewk_Policy_Navigation_Type {
 
 /**
  * @brief Enumeration that creates a type name for #Ewk_Policy_Navigation_Type.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum _Ewk_Policy_Navigation_Type Ewk_Policy_Navigation_Type;
 
 /**
  * @brief Returns a cookie from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -94,7 +94,7 @@ EXPORT_API const char* ewk_policy_decision_cookie_get(Ewk_Policy_Decision* polic
 /**
  * @brief Returns a URL from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -106,7 +106,7 @@ EXPORT_API const char* ewk_policy_decision_url_get(Ewk_Policy_Decision* policy_d
 /**
  * @brief Returns a scheme from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -118,7 +118,7 @@ EXPORT_API const char* ewk_policy_decision_scheme_get(Ewk_Policy_Decision* polic
 /**
  * @brief Returns a host from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -130,7 +130,7 @@ EXPORT_API const char* ewk_policy_decision_host_get(Ewk_Policy_Decision* policy_
 /**
  * @brief Returns an HTTP method from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -142,7 +142,7 @@ EXPORT_API const char* ewk_policy_decision_http_method_get(Ewk_Policy_Decision*
 /**
  * @brief Returns a MIME type for response data from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision policy decision object
  *
@@ -154,7 +154,7 @@ EXPORT_API const char* ewk_policy_decision_response_mime_get(Ewk_Policy_Decision
 /**
  * @brief Return HTTP headers for response data from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -166,7 +166,7 @@ EXPORT_API const Eina_Hash* ewk_policy_decision_response_headers_get(Ewk_Policy_
 /**
  * @brief Returns an HTTP status code from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -177,7 +177,7 @@ EXPORT_API int ewk_policy_decision_response_status_code_get(Ewk_Policy_Decision*
 /**
  * @brief Returns a policy type from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -188,7 +188,7 @@ EXPORT_API Ewk_Policy_Decision_Type ewk_policy_decision_type_get(const Ewk_Polic
 /**
  * @brief Accepts the action which triggers this decision.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -200,7 +200,7 @@ EXPORT_API Eina_Bool ewk_policy_decision_use(Ewk_Policy_Decision* policy_decisio
 /**
  * @brief Ignores the action which triggers this decision.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
@@ -212,7 +212,7 @@ EXPORT_API Eina_Bool ewk_policy_decision_ignore(Ewk_Policy_Decision* policy_deci
 /**
  * @brief Returns a navigation type from the Policy Decision object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] policy_decision The policy decision object
  *
index 79e2c5d..d363657 100644 (file)
@@ -39,14 +39,14 @@ extern "C" {
 
 /**
  * @brief The structure type that creates a type name for #Ewk_Security_Origin.
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  */
 typedef struct _Ewk_Security_Origin Ewk_Security_Origin;
 
 /**
  * @brief Requests for getting host of security origin.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  *
  * @param[in] origin Security origin
  *
@@ -57,7 +57,7 @@ EXPORT_API Eina_Stringshare* ewk_security_origin_host_get(const Ewk_Security_Ori
 /**
  * @brief Requests for getting host of security origin.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  *
  * @param[in] origin Security origin
  *
index ffea564..810a541 100644 (file)
@@ -42,12 +42,11 @@ extern "C" {
 
 /**
  * @brief The structure type that creates a type name for #Ewk_Settings.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef struct Ewk_Settings Ewk_Settings;
 
 /**
- * @if MOBILE
  * @brief Requests enable/disable password form autofill
  *
  * @since_tizen 2.4
@@ -57,12 +56,10 @@ typedef struct Ewk_Settings Ewk_Settings;
  *                   @c EINA_FALSE to disable
  *
  * @return @c EINA_TRUE on success, otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_settings_autofill_password_form_enabled_set(Ewk_Settings* settings, Eina_Bool enable);
 
 /**
- * @if MOBILE
  * @brief Requests enable/disable form candidate data for autofill
  *
  * @since_tizen 2.4
@@ -72,12 +69,10 @@ EXPORT_API Eina_Bool ewk_settings_autofill_password_form_enabled_set(Ewk_Setting
  *                   @c EINA_FALSE to disable
  *
  * @return @c EINA_TRUE on success, otherwise  @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_settings_form_candidate_data_enabled_set(Ewk_Settings* settings, Eina_Bool enable);
 
 /**
- * @if MOBILE
  * @brief Enables/disables form autofill profile feature.
  *
  * @since_tizen 2.4
@@ -87,12 +82,10 @@ EXPORT_API Eina_Bool ewk_settings_form_candidate_data_enabled_set(Ewk_Settings*
  *                   @c EINA_FALSE to disable
  *
  * @return @c EINA_TRUE on success, otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_settings_form_profile_data_enabled_set(Ewk_Settings *settings, Eina_Bool enable);
 
 /**
- * @if MOBILE
  * @brief Requests setting of auto fit.
  *
  * @since_tizen 2.3
@@ -103,12 +96,10 @@ EXPORT_API Eina_Bool ewk_settings_form_profile_data_enabled_set(Ewk_Settings *se
  *
  * @return @c EINA_TRUE on success,\n
  *         otherwise @c EINA_FALSE on failure
- * @endif
  */
 EXPORT_API Eina_Bool ewk_settings_auto_fitting_set(Ewk_Settings* settings, Eina_Bool enable);
 
 /**
- * @if MOBILE
  * @brief Returns the auto fit status.
  *
  * @since_tizen 2.3
@@ -117,14 +108,13 @@ EXPORT_API Eina_Bool ewk_settings_auto_fitting_set(Ewk_Settings* settings, Eina_
  *
  * @return @c EINA_TRUE if auto fit is enabled,\n
  *         otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_settings_auto_fitting_get(const Ewk_Settings* settings);
 
 /**
  * @brief Enables/disables JavaScript executing.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to set JavaScript executing
  * @param[in] enable If @c EINA_TRUE JavaScript executing is enabled,\n
@@ -138,7 +128,7 @@ EXPORT_API Eina_Bool ewk_settings_javascript_enabled_set(Ewk_Settings* settings,
 /**
  * @brief Returns whether JavaScript can be executable.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to query if JavaScript can be
  *            executed
@@ -151,7 +141,7 @@ EXPORT_API Eina_Bool ewk_settings_javascript_enabled_get(const Ewk_Settings* set
 /**
  * @brief Enables/disables auto loading of images.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to set auto loading of images
  * @param[in] automatic If @c EINA_TRUE auto loading of images is enabled,\n
@@ -165,7 +155,7 @@ EXPORT_API Eina_Bool ewk_settings_loads_images_automatically_set(Ewk_Settings* s
 /**
  * @brief Returns whether images can be loaded automatically.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to get auto loading of images
  *
@@ -177,7 +167,7 @@ EXPORT_API Eina_Bool ewk_settings_loads_images_automatically_get(const Ewk_Setti
 /**
  * @brief Sets the default text encoding name.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to set the default text encoding name
  * @param[in] encoding The default text encoding name
@@ -192,7 +182,7 @@ EXPORT_API Eina_Bool ewk_settings_default_text_encoding_name_set(Ewk_Settings* s
  *
  * @details The returned string is guaranteed to be stringshared.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to query the default text encoding
  *            name
@@ -206,7 +196,7 @@ EXPORT_API const char* ewk_settings_default_text_encoding_name_get(const Ewk_Set
  *
  * @details By default, the default font size is @c 16.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to set the default font size
  * @param[in] size A new default font size to set
@@ -219,7 +209,7 @@ EXPORT_API Eina_Bool ewk_settings_default_font_size_set(Ewk_Settings* settings,
 /**
  * @brief Returns the default font size.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to get the default font size
  *
@@ -233,7 +223,7 @@ EXPORT_API int ewk_settings_default_font_size_get(const Ewk_Settings* settings);
  *
  * @details By default, the scripts can open new windows.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to set if the scripts can open
  *            new windows
@@ -248,7 +238,7 @@ EXPORT_API Eina_Bool ewk_settings_scripts_can_open_windows_set(Ewk_Settings* set
 /**
  * @brief Returns whether the scripts can open new windows.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings The settings object to query whether the scripts can
  *            open new windows
index 387f598..6a094ea 100644 (file)
@@ -708,7 +708,7 @@ EXPORT_API Eina_Bool ewk_settings_text_style_state_enabled_get(const Ewk_Setting
 /**
  * @brief Enables/disables legacy font size mode
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings settings object
  * @param[in] enable If @c EINA_TRUE legacy font size is enabled\n
@@ -721,7 +721,7 @@ EXPORT_API Eina_Bool ewk_settings_legacy_font_size_enabled_set(Ewk_Settings* set
 /**
  * @brief Return whether legacy font size mode is enabled
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings settings object
  *
@@ -733,7 +733,7 @@ EXPORT_API Eina_Bool ewk_settings_legacy_font_size_enabled_get(Ewk_Settings* set
 /**
  * @brief Sets font-family as system font for font rendering
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings settings object
  * @param[in] use @c EINA_TRUE to use one of the system fonts which is selected by user in Settings
@@ -746,7 +746,7 @@ EXPORT_API Eina_Bool ewk_settings_use_system_font_set(Ewk_Settings* settings, Ei
 /**
  * @brief Returns whether we use the system font which is selected by user in Settings or use a system default font
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] settings settings object
  *
index d637a51..d236154 100644 (file)
@@ -49,7 +49,7 @@ extern "C" {
 /**
  * @brief Request to set the current page's visibility.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  *
  * @param[in] o View object to set the visibility.
  * @param[in] enable EINA_TRUE to set on the visibility of the page,
@@ -64,7 +64,7 @@ EXPORT_API Eina_Bool ewk_view_visibility_set(Evas_Object* o, Eina_Bool enable);
  *
  * If orientation value is changed, orientationchanged event will occur.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
+ * @since_tizen 2.4
  *
  * @param[in] o View object to receive orientation event.
  * @param[in] orientation The new orientation of the device. (degree)
@@ -77,7 +77,6 @@ EXPORT_API Eina_Bool ewk_view_visibility_set(Evas_Object* o, Eina_Bool enable);
 EXPORT_API void ewk_view_orientation_send(Evas_Object *o, int orientation);
 
 /**
- * @if MOBILE
  * @brief Returns the selection text.
  *
  * @details Returned string becomes invalidated upon next call to this api.
@@ -87,12 +86,10 @@ EXPORT_API void ewk_view_orientation_send(Evas_Object *o, int orientation);
  * @param[in] o View object to get selection text.
  *
  * @return @c selection text, otherwise @c NULL
- * @endif
  */
 EXPORT_API const char* ewk_view_text_selection_text_get(Evas_Object* o);
 
 /**
- * @if MOBILE
  * @brief Clears the current selection.
  *
  * @since_tizen 2.4
@@ -100,14 +97,13 @@ EXPORT_API const char* ewk_view_text_selection_text_get(Evas_Object* o);
  * @param[in] o View object with selection in progress
  *
  * @return @c EINA_TRUE on success, otherwise @c EINA_FALSE
- * @endif
  */
 EXPORT_API Eina_Bool ewk_view_text_selection_clear(Evas_Object* o);
 
 /**
  * @brief Creates a new EFL Chromium view object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] e The canvas object where to create the view object
  *
@@ -131,7 +127,7 @@ EXPORT_API Evas_Object *ewk_view_add_in_incognito_mode(Evas *e);
 /**
  * @brief Gets the #Ewk_Context of this view.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the #Ewk_Context
  *
@@ -147,7 +143,7 @@ EXPORT_API Ewk_Context* ewk_view_context_get(const Evas_Object* o);
  *          smart callback 'url,changed' is called. This is important for\n
  *          EWK API functions which operate on pages.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to load @a url
  * @param[in] url The uniform resource identifier to load
@@ -163,7 +159,7 @@ EXPORT_API Eina_Bool ewk_view_url_set(Evas_Object* o, const char* url);
  * @details It returns an internal string that should not be modified.\n
  *          The string is guaranteed to be stringshared.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the current URL
  *
@@ -190,7 +186,7 @@ EXPORT_API const char* ewk_view_original_url_get(const Evas_Object* o);
 /**
  * @brief Asks the main frame to reload the current document.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to reload the current document
  *
@@ -202,7 +198,7 @@ EXPORT_API Eina_Bool ewk_view_reload(Evas_Object* o);
 /**
  * @brief Asks the main frame to stop loading.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to stop loading
  *
@@ -214,7 +210,7 @@ EXPORT_API Eina_Bool ewk_view_stop(Evas_Object* o);
 /**
  * @brief Gets the #Ewk_Settings of this view.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the #Ewk_Settings
  *
@@ -226,7 +222,7 @@ EXPORT_API Ewk_Settings* ewk_view_settings_get(const Evas_Object* o);
 /**
  * @brief Asks the main frame to navigate back in history.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to navigate back
  *
@@ -238,7 +234,7 @@ EXPORT_API Eina_Bool ewk_view_back(Evas_Object* o);
 /**
  * @brief Asks the main frame to navigate forward in history.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to navigate forward
  *
@@ -251,7 +247,7 @@ EXPORT_API Eina_Bool ewk_view_forward(Evas_Object* o);
  * @brief Checks whether it is possible to navigate backwards one item in
  *         history.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to query if backward navigation is possible
  *
@@ -264,7 +260,7 @@ EXPORT_API Eina_Bool ewk_view_back_possible(Evas_Object* o);
  * @brief Checks whether it is possible to navigate forwards one item in
  *        history.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to query if forward navigation is possible
  *
@@ -284,7 +280,7 @@ EXPORT_API Eina_Bool ewk_view_forward_possible(Evas_Object* o);
  *          to listen for EVAS_CALLBACK_DEL on a given view (@a o) to know\n
  *          when to stop using the returned handle.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the back-forward navigation list
  *
@@ -295,7 +291,7 @@ EXPORT_API Ewk_Back_Forward_List* ewk_view_back_forward_list_get(const Evas_Obje
 /**
  * @brief Clears the back-forward list of a page.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to clear the back-forward list
  */
@@ -307,7 +303,7 @@ EXPORT_API void ewk_view_back_forward_list_clear(const Evas_Object* o);
  * @details It returns an internal string that should not be modified.\n
  *          The string is guaranteed to be stringshared.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the current title
  *
@@ -321,7 +317,7 @@ EXPORT_API const char* ewk_view_title_get(const Evas_Object* o);
  *
  * @details The progress estimation from @c 0.0 to @c 1.0.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the current progress
  *
@@ -333,7 +329,7 @@ EXPORT_API double ewk_view_load_progress_get(const Evas_Object* o);
 /**
  * @brief Requests to set the user agent string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to set the user agent string
  * @param[in] user_agent The user agent string to set,\n
@@ -347,7 +343,7 @@ EXPORT_API Eina_Bool ewk_view_user_agent_set(Evas_Object* o, const char* user_ag
 /**
  * @brief Returns the user agent string.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the user agent string
  *
@@ -358,7 +354,7 @@ EXPORT_API const char* ewk_view_user_agent_get(const Evas_Object* o);
 /**
  * @brief Gets the last known content's size.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the content's size
  * @param[in] width The width pointer to store the content's size width,
@@ -375,7 +371,7 @@ EXPORT_API Eina_Bool ewk_view_contents_size_get(const Evas_Object* o, Evas_Coord
 /**
  * @brief Callback for ewk_view_script_execute().
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object
  * @param[in] result_value The value returned by the script\n
@@ -389,7 +385,7 @@ typedef void (*Ewk_View_Script_Execute_Cb)(Evas_Object* o, const char* result_va
 /**
  * @brief Requests the execution of the given script.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @remarks This allows to use @c NULL for the callback parameter\n
  *          So, if the result data from the script is not required,
@@ -410,7 +406,7 @@ EXPORT_API Eina_Bool ewk_view_script_execute(Evas_Object* o, const char* script,
 /**
  * @brief Scales the current page, centered at the given point.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to set the zoom level
  * @param[in] scale_factor A new level to set
@@ -429,7 +425,7 @@ EXPORT_API Eina_Bool ewk_view_scale_set(Evas_Object* o, double scale_factor, int
  *          called immediately\n
  *          until the scale factor of the page is really changed.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the scale factor of
  *
@@ -441,7 +437,7 @@ EXPORT_API double ewk_view_scale_get(const Evas_Object* o);
 /**
  * @brief Exits fullscreen when the back key is pressed.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to exit the fullscreen mode
  *
@@ -453,7 +449,7 @@ EXPORT_API Eina_Bool ewk_view_fullscreen_exit(Evas_Object* o);
 /**
  * @brief Suspends the operation associated with the view object.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to suspend
  */
@@ -463,7 +459,7 @@ EXPORT_API void ewk_view_suspend(Evas_Object* o);
  * @brief Resumes the operation associated with the view object after calling
  *        ewk_view_suspend().
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to resume
  */
@@ -472,7 +468,7 @@ EXPORT_API void ewk_view_resume(Evas_Object* o);
 /**
  * \enum Ewk_Http_Method
  * @brief Enumeration that provides HTTP method options.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 enum Ewk_Http_Method {
     EWK_HTTP_METHOD_GET, /**< Get */
@@ -484,14 +480,14 @@ enum Ewk_Http_Method {
 
 /**
  * @brief Enumeration that creates a type name for the #Ewk_Http_Method.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum Ewk_Http_Method Ewk_Http_Method;
 
 /**
  * @brief Requests loading of the given request data.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to load
  * @param[in] url The uniform resource identifier to load
@@ -505,7 +501,6 @@ typedef enum Ewk_Http_Method Ewk_Http_Method;
 EXPORT_API Eina_Bool ewk_view_url_request_set(Evas_Object* o, const char* url, Ewk_Http_Method method, Eina_Hash* headers, const char* body);
 
 /**
- * @if MOBILE
  * @brief Requests loading the given contents by MIME type into the view object.
  *
  * @since_tizen 2.3
@@ -522,14 +517,13 @@ EXPORT_API Eina_Bool ewk_view_url_request_set(Evas_Object* o, const char* url, E
  *
  * @return @c EINA_TRUE on a successful request,\n
  *         otherwise @c EINA_FALSE on errors
- * @endif
  */
 EXPORT_API Eina_Bool ewk_view_contents_set(Evas_Object* o, const char* contents, size_t contents_size, char* mime_type, char* encoding, char* base_uri);
 
 /**
  * @brief Scrolls the webpage of view by dx and dy.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to scroll
  * @param[in] dx The horizontal offset to scroll
@@ -540,7 +534,7 @@ EXPORT_API void ewk_view_scroll_by(Evas_Object* o, int dx, int dy);
 /**
  * @brief Gets the current scroll position of the given view.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to get the current scroll position
  * @param[in] x The pointer to store the horizontal position, may be @c NULL
@@ -557,7 +551,7 @@ EXPORT_API Eina_Bool ewk_view_scroll_pos_get(Evas_Object* o, int* x, int* y);
  * @details Both values are from zero to the contents size minus
  *          the viewport size.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to scroll
  * @param[in] x The horizontal position to scroll
@@ -572,7 +566,7 @@ EXPORT_API Eina_Bool ewk_view_scroll_set(Evas_Object* o, int x, int y);
  * Enum values used to specify search options.
  * @brief  Enumeration that provides the option to find text.
  * @details It contains enum values used to specify search options.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 enum Ewk_Find_Options {
     EWK_FIND_OPTIONS_NONE, /**< No search flags, this means a case sensitive, no wrap, forward only search */
@@ -588,14 +582,14 @@ enum Ewk_Find_Options {
 
 /**
  * @brief Enumeration that creates a type name for the #Ewk_Find_Options.
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  */
 typedef enum Ewk_Find_Options Ewk_Find_Options;
 
 /**
  * @brief Searches and highlights the given string in the document.
  *
- * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.3
  *
  * @param[in] o The view object to find text
  * @param[in] text The text to find
@@ -620,7 +614,7 @@ EXPORT_API Eina_Bool ewk_view_text_find(Evas_Object* o, const char* text, Ewk_Fi
  * If an @a unreachableUrl is passed it is used as the url for the loaded
  * content.\n This is typically used to display error pages for a failed load.
  *
- * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 2.3.1 @endif
+ * @since_tizen 2.4
  *
  * @param[in] o view object to load the HTML into
  * @param[in] html HTML data to load