Changeset 119086 in webkit


Ignore:
Timestamp:
May 31, 2012, 4:35:18 AM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[EFL][WK2] Rename ewk_private.h to ewk_view_private.h
https://bugs.webkit.org/show_bug.cgi?id=87923

Reviewed by Kenneth Rohde Christiansen.

EFL WK1 decided to divide up ewk_private.h into each file's XXX_private.h file in order to maintain
internal functions more easily. EFL WK2 needs to adjust this as well.

  • UIProcess/API/efl/PageClientImpl.cpp:
  • UIProcess/API/efl/ewk_view_private.h: Renamed from Source/WebKit2/UIProcess/API/efl/ewk_private.h.

(WebCore):

  • UIProcess/cairo/BackingStoreCairo.cpp:
Location:
trunk/Source/WebKit2
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r119066 r119086  
     12012-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
    1162012-05-31  Andy Estes  <aestes@apple.com>
    217
  • trunk/Source/WebKit2/UIProcess/API/efl/PageClientImpl.cpp

    r118914 r119086  
    3333#include "WebContextMenuProxy.h"
    3434#include "WebPageProxy.h"
    35 #include "ewk_private.h"
     35#include "ewk_view_private.h"
    3636
    3737using namespace WebCore;
  • trunk/Source/WebKit2/UIProcess/API/efl/ewk_view_private.h

    r119085 r119086  
    1919 */
    2020
    21 #ifndef ewk_private_h
    22 #define ewk_private_h
     21#ifndef ewk_view_private_h
     22#define ewk_view_private_h
    2323
    2424#include <Evas.h>
     
    3232void ewk_view_image_data_set(Evas_Object* ewkView, void* imageData, const WebCore::IntSize& size);
    3333
    34 #endif // ewk_private_h
     34#endif // ewk_view_private_h
  • trunk/Source/WebKit2/UIProcess/cairo/BackingStoreCairo.cpp

    r104804 r119086  
    3535
    3636#if PLATFORM(EFL)
    37 #include "ewk_private.h"
     37#include "ewk_view_private.h"
    3838#endif
    3939
Note: See TracChangeset for help on using the changeset viewer.