Changeset 86576 in webkit


Ignore:
Timestamp:
May 16, 2011 9:05:41 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-16 Grzegorz Czajkowski <g.czajkowski@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Remove EAPI macro from functions definition
https://bugs.webkit.org/show_bug.cgi?id=60754

This macro should be used in header files only.
It's not necessary to have it in definitions.

  • ewk/ewk_cookies.cpp: (ewk_cookies_file_set): (ewk_cookies_clear): (ewk_cookies_get_all): (ewk_cookies_cookie_del): (ewk_cookies_cookie_free): (ewk_cookies_policy_set): (ewk_cookies_policy_get):
  • ewk/ewk_window_features.cpp: (ewk_window_features_unref): (ewk_window_features_ref): (ewk_window_features_bool_property_get): (ewk_window_features_int_property_get):
Location:
trunk/Source/WebKit/efl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r86480 r86576  
     12011-05-16  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Remove EAPI macro from functions definition
     6        https://bugs.webkit.org/show_bug.cgi?id=60754
     7
     8        This macro should be used in header files only.
     9        It's not necessary to have it in definitions.
     10
     11        * ewk/ewk_cookies.cpp:
     12        (ewk_cookies_file_set):
     13        (ewk_cookies_clear):
     14        (ewk_cookies_get_all):
     15        (ewk_cookies_cookie_del):
     16        (ewk_cookies_cookie_free):
     17        (ewk_cookies_policy_set):
     18        (ewk_cookies_policy_get):
     19        * ewk/ewk_window_features.cpp:
     20        (ewk_window_features_unref):
     21        (ewk_window_features_ref):
     22        (ewk_window_features_bool_property_get):
     23        (ewk_window_features_int_property_get):
     24
    1252011-05-13  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    226
  • trunk/Source/WebKit/efl/ewk/ewk_cookies.cpp

    r81658 r86576  
    4646 *          @c EINA_FALSE otherwise.
    4747 */
    48 EAPI Eina_Bool ewk_cookies_file_set(const char *filename)
     48Eina_Bool ewk_cookies_file_set(const char *filename)
    4949{
    5050#if USE(SOUP)
     
    7777 * Clears all the cookies from the cookie jar.
    7878 */
    79 EAPI void ewk_cookies_clear(void)
     79void ewk_cookies_clear(void)
    8080{
    8181#if USE(SOUP)
     
    9797 * @return an @c Eina_List with all the cookies in the cookie jar.
    9898 */
    99 EAPI Eina_List* ewk_cookies_get_all(void)
     99Eina_List* ewk_cookies_get_all(void)
    100100{
    101101    Eina_List* el = 0;
     
    132132 * @param cookie an @c Ewk_Cookie that has the info relative to that cookie.
    133133 */
    134 EAPI void ewk_cookies_cookie_del(Ewk_Cookie *cookie)
     134void ewk_cookies_cookie_del(Ewk_Cookie *cookie)
    135135{
    136136#if USE(SOUP)
     
    161161 * @param cookie the Ewk_Cookie struct that will be freed.
    162162 */
    163 EAPI void ewk_cookies_cookie_free(Ewk_Cookie *cookie)
     163void ewk_cookies_cookie_free(Ewk_Cookie *cookie)
    164164{
    165165#if USE(SOUP)
     
    179179 * @see Ewk_Cookie_Policy
    180180 */
    181 EAPI void ewk_cookies_policy_set(Ewk_Cookie_Policy p)
     181void ewk_cookies_policy_set(Ewk_Cookie_Policy p)
    182182{
    183183#if USE(SOUP)
     
    208208 * @see Ewk_Cookie_Policy
    209209 */
    210 EAPI Ewk_Cookie_Policy ewk_cookies_policy_get(void)
     210Ewk_Cookie_Policy ewk_cookies_policy_get(void)
    211211{
    212212    Ewk_Cookie_Policy ewk_policy = EWK_COOKIE_JAR_ACCEPT_ALWAYS;
  • trunk/Source/WebKit/efl/ewk/ewk_window_features.cpp

    r80563 r86576  
    4343 * @param window_features the object to decrease reference count
    4444 */
    45 EAPI void ewk_window_features_unref(Ewk_Window_Features* window_features)
     45void ewk_window_features_unref(Ewk_Window_Features* window_features)
    4646{
    4747    EINA_SAFETY_ON_NULL_RETURN(window_features);
     
    6161 * @param window_features the object to increase reference count
    6262 */
    63 EAPI void ewk_window_features_ref(Ewk_Window_Features* window_features)
     63void ewk_window_features_ref(Ewk_Window_Features* window_features)
    6464{
    6565    EINA_SAFETY_ON_NULL_RETURN(window_features);
     
    8383 * @see ewk_window_features_int_property_get
    8484 */
    85 EAPI void ewk_window_features_bool_property_get(Ewk_Window_Features* window_features, Eina_Bool* toolbar_visible, Eina_Bool* statusbar_visible, Eina_Bool* scrollbars_visible, Eina_Bool* menubar_visible, Eina_Bool* locationbar_visible, Eina_Bool* fullscreen)
     85void ewk_window_features_bool_property_get(Ewk_Window_Features* window_features, Eina_Bool* toolbar_visible, Eina_Bool* statusbar_visible, Eina_Bool* scrollbars_visible, Eina_Bool* menubar_visible, Eina_Bool* locationbar_visible, Eina_Bool* fullscreen)
    8686{
    8787    EINA_SAFETY_ON_NULL_RETURN(window_features);
     
    124124 * @see ewk_window_features_bool_property_get
    125125 */
    126 EAPI void ewk_window_features_int_property_get(Ewk_Window_Features* window_features, int* x, int* y, int* w, int* h)
     126void ewk_window_features_int_property_get(Ewk_Window_Features* window_features, int* x, int* y, int* w, int* h)
    127127{
    128128    EINA_SAFETY_ON_NULL_RETURN(window_features);
Note: See TracChangeset for help on using the changeset viewer.