[EFL] Fix and update doxygen documentation for ewk_view.

https://bugs.webkit.org/show_bug.cgi?id=66293

Patch by Grzegorz Czajkowski <g.czajkowski@samsung.com> on 2011-08-19
Reviewed by Kent Tamura.

Adds doxygen documentation to the structures in ewk_view.cpp.

* ewk/ewk_view.cpp:

git-svn-id: svn://svn.chromium.org/blink/trunk@93401 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent edbdfc24
2011-08-19 Grzegorz Czajkowski <g.czajkowski@samsung.com>
[EFL] Fix and update doxygen documentation for ewk_view.
https://bugs.webkit.org/show_bug.cgi?id=66293
Reviewed by Kent Tamura.
Adds doxygen documentation to the structures in ewk_view.cpp.
* ewk/ewk_view.cpp:
2011-08-19 KwangHyuk Kim <hyuki.kim@samsung.com>
[EFL] Modify type of both col and row parameters for backing store's internal api.
......
......@@ -73,6 +73,12 @@ static const size_t EWK_VIEW_SCROLLS_SIZE_INITIAL = 8;
static const size_t EWK_VIEW_SCROLLS_SIZE_STEP = 2;
static const size_t EWK_VIEW_SCROLLS_SIZE_MAX_FREE = 32;
/**
* @brief Private data that is used internally by EFL WebKit
* and should never be modified from outside.
*
* @internal
*/
struct _Ewk_View_Private_Data {
WebCore::Page *page;
WebCore::Settings *page_settings;
......@@ -2447,6 +2453,14 @@ void ewk_view_scrolls_process(Ewk_View_Smart_Data *sd)
_ewk_view_scrolls_flush(priv);
}
/**
* @brief Structure that keeps the paint context.
*
* @internal
*
* @note This is not for general use but just for subclasses that want
* to define their own backing store.
*/
struct _Ewk_View_Paint_Context {
WebCore::GraphicsContext *gc;
WebCore::FrameView *view;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment