Source/WebKit2/ChangeLog

 12012-05-30 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 NOBODY (OOPS!).
 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-30 Luiz Agostini <luiz.agostini@nokia.com>
217
318 [Qt] handled touchmove events should not cancel tap gesture recognition

Source/WebKit2/UIProcess/API/efl/PageClientImpl.cpp

3232#include "WebContext.h"
3333#include "WebContextMenuProxy.h"
3434#include "WebPageProxy.h"
35 #include "ewk_private.h"
 35#include "ewk_view_private.h"
3636
3737using namespace WebCore;
3838

Source/WebKit2/UIProcess/API/efl/ewk_private.h

1 /*
2  * Copyright (C) 2012 Samsung Electronics
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB. If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20 
21 #ifndef ewk_private_h
22 #define ewk_private_h
23 
24 #include <Evas.h>
25 
26 namespace WebCore {
27 class IntRect;
28 class IntSize;
29 }
30 
31 void ewk_view_display(Evas_Object* ewkView, const WebCore::IntRect& rect);
32 void ewk_view_image_data_set(Evas_Object* ewkView, void* imageData, const WebCore::IntSize& size);
33 
34 #endif // ewk_private_h

Source/WebKit2/UIProcess/API/efl/ewk_view_private.h

 1/*
 2 * Copyright (C) 2012 Samsung Electronics
 3 *
 4 * This library is free software; you can redistribute it and/or
 5 * modify it under the terms of the GNU Library General Public
 6 * License as published by the Free Software Foundation; either
 7 * version 2 of the License, or (at your option) any later version.
 8 *
 9 * This library is distributed in the hope that it will be useful,
 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 12 * Library General Public License for more details.
 13 *
 14 * You should have received a copy of the GNU Library General Public License
 15 * along with this library; see the file COPYING.LIB. If not, write to
 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 17 * Boston, MA 02110-1301, USA.
 18 *
 19 */
 20
 21#ifndef ewk_view_private_h
 22#define ewk_view_private_h
 23
 24#include <Evas.h>
 25
 26namespace WebCore {
 27class IntRect;
 28class IntSize;
 29}
 30
 31void ewk_view_display(Evas_Object* ewkView, const WebCore::IntRect& rect);
 32void ewk_view_image_data_set(Evas_Object* ewkView, void* imageData, const WebCore::IntSize& size);
 33
 34#endif // ewk_view_private_h

Source/WebKit2/UIProcess/cairo/BackingStoreCairo.cpp

3434#include <cairo/cairo.h>
3535
3636#if PLATFORM(EFL)
37 #include "ewk_private.h"
 37#include "ewk_view_private.h"
3838#endif
3939
4040using namespace WebCore;