Changeset 89776 in webkit


Ignore:
Timestamp:
Jun 26, 2011 5:31:19 PM (13 years ago)
Author:
ryuan.choi@samsung.com
Message:

2011-06-26 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Functions needing Ewk_View_Private_Data as parameter are not part of public API.
https://bugs.webkit.org/show_bug.cgi?id=62688

Move functions which use Ewk_View_Private_Data and may not be required by
applications to ewk_private.h.

  • ewk/ewk_private.h:
  • ewk/ewk_view.h:
Location:
trunk/Source/WebKit/efl
Files:
3 edited

Legend:

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

    r89721 r89776  
     12011-06-26  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Functions needing Ewk_View_Private_Data as parameter are not part of public API.
     6        https://bugs.webkit.org/show_bug.cgi?id=62688
     7
     8        Move functions which use Ewk_View_Private_Data and may not be required by
     9        applications to ewk_private.h.
     10
     11        * ewk/ewk_private.h:
     12        * ewk/ewk_view.h:
     13
    1142011-06-24  Ryuan Choi  <ryuan.choi@samsung.com>
    215
  • trunk/Source/WebKit/efl/ewk/ewk_private.h

    r86421 r89776  
    123123
    124124#if ENABLE(CONTEXT_MENUS)
    125 
    126125Ewk_Context_Menu *ewk_context_menu_new(Evas_Object *view, WebCore::ContextMenuController *controller);
    127126Eina_Bool ewk_context_menu_free(Ewk_Context_Menu *o);
     
    129128Ewk_Context_Menu *ewk_context_menu_custom_get(Ewk_Context_Menu *o);
    130129void ewk_context_menu_show(Ewk_Context_Menu *o);
     130#endif
    131131
    132 #endif
     132const Eina_Rectangle *ewk_view_repaints_get(const Ewk_View_Private_Data *priv, size_t *count);
     133const Ewk_Scroll_Request *ewk_view_scroll_requests_get(const Ewk_View_Private_Data *priv, size_t *count);
     134
     135void ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
     136
     137void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Data *priv);
    133138
    134139Ewk_Window_Features *ewk_window_features_new_from_core(const WebCore::WindowFeatures* core);
  • trunk/Source/WebKit/efl/ewk/ewk_view.h

    r87765 r89776  
    507507EAPI Ewk_View_Smart_Data *ewk_view_smart_data_get(const Evas_Object *o);
    508508
    509 EAPI const Eina_Rectangle *ewk_view_repaints_get(const Ewk_View_Private_Data *priv, size_t *count);
    510 EAPI const Ewk_Scroll_Request *ewk_view_scroll_requests_get(const Ewk_View_Private_Data *priv, size_t *count);
    511 
    512 EAPI void ewk_view_repaint_add(Ewk_View_Private_Data *priv, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);
    513 
    514 EAPI void ewk_view_layout_if_needed_recursive(Ewk_View_Private_Data *priv);
    515 
    516509EAPI void ewk_view_scrolls_process(Ewk_View_Smart_Data *sd);
    517510
Note: See TracChangeset for help on using the changeset viewer.