From dd244219074d3056ff43e0ea6a3a8784ea1fa1f2 Mon Sep 17 00:00:00 2001 From: Gyuyoung Kim Date: Mon, 29 Apr 2013 17:00:09 +0900 Subject: [PATCH] Fix build break by removing TIZEN_RECORDING_SURFACE_SET Change-Id: Ia8648b935687dbc0238eb4ae8c45efed0108f462 --- Source/WebKit2/UIProcess/API/efl/ewk_view.cpp | 5 +++++ Source/WebKit2/UIProcess/API/efl/ewk_view.h | 11 +++++++++++ .../WebPage/LayerTreeCoordinator/WebGraphicsLayer.cpp | 4 ++++ 3 files changed, 20 insertions(+) diff --git a/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp b/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp index 48af0a6..064b059 100755 --- a/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp +++ b/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp @@ -3669,6 +3669,11 @@ Ewk_History* ewk_view_history_get(Evas_Object* ewkView) return ewkHistoryCreate(WKPageGetBackForwardList(toAPI(page))); } +Eina_Bool ewk_view_recording_surface_enable_set(Evas_Object* ewkView, Eina_Bool enable) +{ + return false; +} + Eina_Bool ewk_view_notification_closed(Evas_Object* ewkView, Eina_List* ewkNotifications) { #if ENABLE(TIZEN_NOTIFICATIONS) diff --git a/Source/WebKit2/UIProcess/API/efl/ewk_view.h b/Source/WebKit2/UIProcess/API/efl/ewk_view.h index d396158..bc286e5 100755 --- a/Source/WebKit2/UIProcess/API/efl/ewk_view.h +++ b/Source/WebKit2/UIProcess/API/efl/ewk_view.h @@ -1200,6 +1200,17 @@ EAPI Ewk_Hit_Test* ewk_view_hit_test_new(Evas_Object* o, int x, int y, int hit_t */ EAPI Ewk_History* ewk_view_history_get(Evas_Object* o); +/** + * Requests to set recording surface. + * + * @param o view object to set recording surface + * @param enable @c EINA_TRUE to enable recording surface + * @c EINA_FALSE to disable + * + * @return @c EINA_TRUE on success or @c EINA_FALSE on failure + */ +EINA_DEPRECATED EAPI Eina_Bool ewk_view_recording_surface_enable_set(Evas_Object* o, Eina_Bool enable); + /* * Notify that notification is closed. * diff --git a/Source/WebKit2/WebProcess/WebPage/LayerTreeCoordinator/WebGraphicsLayer.cpp b/Source/WebKit2/WebProcess/WebPage/LayerTreeCoordinator/WebGraphicsLayer.cpp index 4938a37..9cb8f25 100755 --- a/Source/WebKit2/WebProcess/WebPage/LayerTreeCoordinator/WebGraphicsLayer.cpp +++ b/Source/WebKit2/WebProcess/WebPage/LayerTreeCoordinator/WebGraphicsLayer.cpp @@ -738,6 +738,10 @@ void WebGraphicsLayer::tiledBackingStorePaint(GraphicsContext* context, const In paintGraphicsLayerContents(*context, rect); } +void WebGraphicsLayer::tiledBackingStorePaintEnd(const Vector& updatedRects) +{ +} + bool WebGraphicsLayer::tiledBackingStoreUpdatesAllowed() const { if (!m_inUpdateMode) -- 2.7.4