Changeset 93401 in webkit


Ignore:
Timestamp:
Aug 19, 2011, 7:12:33 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[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:
Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

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

    r93399 r93401  
     12011-08-19  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
     2
     3        [EFL] Fix and update doxygen documentation for ewk_view.
     4        https://bugs.webkit.org/show_bug.cgi?id=66293
     5
     6        Reviewed by Kent Tamura.
     7
     8        Adds doxygen documentation to the structures in ewk_view.cpp.
     9
     10        * ewk/ewk_view.cpp:
     11
    1122011-08-19  KwangHyuk Kim  <hyuki.kim@samsung.com>
    213
  • trunk/Source/WebKit/efl/ewk/ewk_view.cpp

    r93379 r93401  
    7474static const size_t EWK_VIEW_SCROLLS_SIZE_MAX_FREE = 32;
    7575
     76/**
     77 * @brief Private data that is used internally by EFL WebKit
     78 * and should never be modified from outside.
     79 *
     80 * @internal
     81 */
    7682struct _Ewk_View_Private_Data {
    7783    WebCore::Page *page;
     
    24482454}
    24492455
     2456/**
     2457 * @brief Structure that keeps the paint context.
     2458 *
     2459 * @internal
     2460 *
     2461 * @note This is not for general use but just for subclasses that want
     2462 *       to define their own backing store.
     2463 */
    24502464struct _Ewk_View_Paint_Context {
    24512465    WebCore::GraphicsContext *gc;
Note: See TracChangeset for help on using the changeset viewer.