Changeset 119086 in webkit
- Timestamp:
- May 31, 2012, 4:35:18 AM (13 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r119066 r119086 1 2012-05-31 Gyuyoung Kim <gyuyoung.kim@samsung.com> 2 3 [EFL][WK2] Rename ewk_private.h to ewk_view_private.h 4 https://bugs.webkit.org/show_bug.cgi?id=87923 5 6 Reviewed by Kenneth Rohde Christiansen. 7 8 EFL WK1 decided to divide up ewk_private.h into each file's XXX_private.h file in order to maintain 9 internal functions more easily. EFL WK2 needs to adjust this as well. 10 11 * UIProcess/API/efl/PageClientImpl.cpp: 12 * UIProcess/API/efl/ewk_view_private.h: Renamed from Source/WebKit2/UIProcess/API/efl/ewk_private.h. 13 (WebCore): 14 * UIProcess/cairo/BackingStoreCairo.cpp: 15 1 16 2012-05-31 Andy Estes <aestes@apple.com> 2 17 -
trunk/Source/WebKit2/UIProcess/API/efl/PageClientImpl.cpp
r118914 r119086 33 33 #include "WebContextMenuProxy.h" 34 34 #include "WebPageProxy.h" 35 #include "ewk_ private.h"35 #include "ewk_view_private.h" 36 36 37 37 using namespace WebCore; -
trunk/Source/WebKit2/UIProcess/API/efl/ewk_view_private.h
r119085 r119086 19 19 */ 20 20 21 #ifndef ewk_ private_h22 #define ewk_ private_h21 #ifndef ewk_view_private_h 22 #define ewk_view_private_h 23 23 24 24 #include <Evas.h> … … 32 32 void ewk_view_image_data_set(Evas_Object* ewkView, void* imageData, const WebCore::IntSize& size); 33 33 34 #endif // ewk_ private_h34 #endif // ewk_view_private_h -
trunk/Source/WebKit2/UIProcess/cairo/BackingStoreCairo.cpp
r104804 r119086 35 35 36 36 #if PLATFORM(EFL) 37 #include "ewk_ private.h"37 #include "ewk_view_private.h" 38 38 #endif 39 39
Note:
See TracChangeset
for help on using the changeset viewer.