Fix build break by removing TIZEN_RECORDING_SURFACE_SET
authorGyuyoung Kim <gyuyoung.kim@samsung.com>
Mon, 29 Apr 2013 08:00:09 +0000 (17:00 +0900)
committerGyuyoung Kim <gyuyoung.kim@samsung.com>
Mon, 29 Apr 2013 08:01:15 +0000 (17:01 +0900)
Change-Id: Ia8648b935687dbc0238eb4ae8c45efed0108f462

Source/WebKit2/UIProcess/API/efl/ewk_view.cpp
Source/WebKit2/UIProcess/API/efl/ewk_view.h
Source/WebKit2/WebProcess/WebPage/LayerTreeCoordinator/WebGraphicsLayer.cpp

index 48af0a6..064b059 100755 (executable)
@@ -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)
index d396158..bc286e5 100755 (executable)
@@ -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.
  *
index 4938a37..9cb8f25 100755 (executable)
@@ -738,6 +738,10 @@ void WebGraphicsLayer::tiledBackingStorePaint(GraphicsContext* context, const In
     paintGraphicsLayerContents(*context, rect);
 }
 
+void WebGraphicsLayer::tiledBackingStorePaintEnd(const Vector<IntRect>& updatedRects)
+{
+}
+
 bool WebGraphicsLayer::tiledBackingStoreUpdatesAllowed() const
 {
     if (!m_inUpdateMode)