Changeset 93401 in webkit
- Timestamp:
- Aug 19, 2011, 7:12:33 AM (14 years ago)
- Location:
- trunk/Source/WebKit/efl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/efl/ChangeLog
r93399 r93401 1 2011-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 1 12 2011-08-19 KwangHyuk Kim <hyuki.kim@samsung.com> 2 13 -
trunk/Source/WebKit/efl/ewk/ewk_view.cpp
r93379 r93401 74 74 static const size_t EWK_VIEW_SCROLLS_SIZE_MAX_FREE = 32; 75 75 76 /** 77 * @brief Private data that is used internally by EFL WebKit 78 * and should never be modified from outside. 79 * 80 * @internal 81 */ 76 82 struct _Ewk_View_Private_Data { 77 83 WebCore::Page *page; … … 2448 2454 } 2449 2455 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 */ 2450 2464 struct _Ewk_View_Paint_Context { 2451 2465 WebCore::GraphicsContext *gc;
Note:
See TracChangeset
for help on using the changeset viewer.