Title: [158782] trunk/Source/WebKit2
Revision
158782
Author
[email protected]
Date
2013-11-06 13:31:52 -0800 (Wed, 06 Nov 2013)

Log Message

[Gtk][EFL] Fix build after r158759
https://bugs.webkit.org/show_bug.cgi?id=123910

Patch by Brendan Long <[email protected]> on 2013-11-06
Reviewed by Gustavo Noronha Silva.

* UIProcess/API/gtk/PageClientImpl.cpp: Remove flashBackingStoreUpdates().
* UIProcess/API/gtk/PageClientImpl.h: Same.
* UIProcess/CoordinatedGraphics/WebView.cpp: Same.
* UIProcess/CoordinatedGraphics/WebView.h: Same.
* UIProcess/DrawingAreaProxyImpl.cpp:
(WebKit::DrawingAreaProxyImpl::incorporateUpdate): Don't call flashBackingStoreUpdates().

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (158781 => 158782)


--- trunk/Source/WebKit2/ChangeLog	2013-11-06 21:21:17 UTC (rev 158781)
+++ trunk/Source/WebKit2/ChangeLog	2013-11-06 21:31:52 UTC (rev 158782)
@@ -1,3 +1,17 @@
+2013-11-06  Brendan Long  <[email protected]>
+
+        [Gtk][EFL] Fix build after r158759
+        https://bugs.webkit.org/show_bug.cgi?id=123910
+
+        Reviewed by Gustavo Noronha Silva.
+
+        * UIProcess/API/gtk/PageClientImpl.cpp: Remove flashBackingStoreUpdates().
+        * UIProcess/API/gtk/PageClientImpl.h: Same.
+        * UIProcess/CoordinatedGraphics/WebView.cpp: Same.
+        * UIProcess/CoordinatedGraphics/WebView.h: Same.
+        * UIProcess/DrawingAreaProxyImpl.cpp:
+        (WebKit::DrawingAreaProxyImpl::incorporateUpdate): Don't call flashBackingStoreUpdates().
+
 2013-11-06  Jer Noble  <[email protected]>
 
         Unreviewed Mac build fix; include ResourceResponse.

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp (158781 => 158782)


--- trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp	2013-11-06 21:21:17 UTC (rev 158781)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp	2013-11-06 21:31:52 UTC (rev 158782)
@@ -269,11 +269,6 @@
     notImplemented();
 }
 
-void PageClientImpl::flashBackingStoreUpdates(const Vector<IntRect>&)
-{
-    notImplemented();
-}
-
 void PageClientImpl::updateTextInputState()
 {
     webkitWebViewBaseUpdateTextInputState(WEBKIT_WEB_VIEW_BASE(m_viewWidget));

Modified: trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h (158781 => 158782)


--- trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h	2013-11-06 21:21:17 UTC (rev 158781)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h	2013-11-06 21:31:52 UTC (rev 158782)
@@ -88,7 +88,6 @@
     virtual PassRefPtr<WebColorPicker> createColorPicker(WebPageProxy*, const WebCore::Color& intialColor, const WebCore::IntRect&);
 #endif
     virtual void setFindIndicator(PassRefPtr<FindIndicator>, bool fadeOut, bool animate);
-    virtual void flashBackingStoreUpdates(const Vector<WebCore::IntRect>& updateRects);
     virtual void getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent&, const AtomicString&, Vector<WTF::String>&);
     virtual void updateTextInputState();
     virtual void startDrag(const WebCore::DragData&, PassRefPtr<ShareableBitmap> dragImage);

Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.cpp (158781 => 158782)


--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.cpp	2013-11-06 21:21:17 UTC (rev 158781)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.cpp	2013-11-06 21:31:52 UTC (rev 158782)
@@ -468,11 +468,6 @@
     notImplemented();
 }
 
-void WebView::flashBackingStoreUpdates(const Vector<IntRect>&)
-{
-    notImplemented();
-}
-
 void WebView::updateTextInputState()
 {
     notImplemented();

Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h (158781 => 158782)


--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h	2013-11-06 21:21:17 UTC (rev 158781)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h	2013-11-06 21:31:52 UTC (rev 158782)
@@ -187,8 +187,6 @@
     virtual void exitAcceleratedCompositingMode() OVERRIDE;
     virtual void updateAcceleratedCompositingMode(const LayerTreeContext&) OVERRIDE;
 
-    virtual void flashBackingStoreUpdates(const Vector<WebCore::IntRect>&) OVERRIDE;
-
 protected:
     WebViewClient m_client;
     RefPtr<WebPageProxy> m_page;

Modified: trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp (158781 => 158782)


--- trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp	2013-11-06 21:21:17 UTC (rev 158781)
+++ trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp	2013-11-06 21:31:52 UTC (rev 158782)
@@ -254,9 +254,6 @@
         for (size_t i = 0; i < updateInfo.updateRects.size(); ++i)
             m_webPageProxy->setViewNeedsDisplay(updateInfo.updateRects[i]);
     }
-    
-    if (WebPageProxy::debugPaintFlags() & kWKDebugFlashBackingStoreUpdates)
-        m_webPageProxy->flashBackingStoreUpdates(updateInfo.updateRects);
 
     if (shouldScroll)
         m_webPageProxy->displayView();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to