Changeset 158782 in webkit


Ignore:
Timestamp:
Nov 6, 2013 1:31:52 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Brendan Long <b.long@cablelabs.com> 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().

Location:
trunk/Source/WebKit2
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r158781 r158782  
     12013-11-06  Brendan Long  <b.long@cablelabs.com>
     2
     3        [Gtk][EFL] Fix build after r158759
     4        https://bugs.webkit.org/show_bug.cgi?id=123910
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * UIProcess/API/gtk/PageClientImpl.cpp: Remove flashBackingStoreUpdates().
     9        * UIProcess/API/gtk/PageClientImpl.h: Same.
     10        * UIProcess/CoordinatedGraphics/WebView.cpp: Same.
     11        * UIProcess/CoordinatedGraphics/WebView.h: Same.
     12        * UIProcess/DrawingAreaProxyImpl.cpp:
     13        (WebKit::DrawingAreaProxyImpl::incorporateUpdate): Don't call flashBackingStoreUpdates().
     14
    1152013-11-06  Jer Noble  <jer.noble@apple.com>
    216
  • trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp

    r158013 r158782  
    270270}
    271271
    272 void PageClientImpl::flashBackingStoreUpdates(const Vector<IntRect>&)
    273 {
    274     notImplemented();
    275 }
    276 
    277272void PageClientImpl::updateTextInputState()
    278273{
  • trunk/Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h

    r158013 r158782  
    8989#endif
    9090    virtual void setFindIndicator(PassRefPtr<FindIndicator>, bool fadeOut, bool animate);
    91     virtual void flashBackingStoreUpdates(const Vector<WebCore::IntRect>& updateRects);
    9291    virtual void getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent&, const AtomicString&, Vector<WTF::String>&);
    9392    virtual void updateTextInputState();
  • trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.cpp

    r158032 r158782  
    469469}
    470470
    471 void WebView::flashBackingStoreUpdates(const Vector<IntRect>&)
    472 {
    473     notImplemented();
    474 }
    475 
    476471void WebView::updateTextInputState()
    477472{
  • trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/WebView.h

    r157996 r158782  
    188188    virtual void updateAcceleratedCompositingMode(const LayerTreeContext&) OVERRIDE;
    189189
    190     virtual void flashBackingStoreUpdates(const Vector<WebCore::IntRect>&) OVERRIDE;
    191 
    192190protected:
    193191    WebViewClient m_client;
  • trunk/Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp

    r158013 r158782  
    255255            m_webPageProxy->setViewNeedsDisplay(updateInfo.updateRects[i]);
    256256    }
    257    
    258     if (WebPageProxy::debugPaintFlags() & kWKDebugFlashBackingStoreUpdates)
    259         m_webPageProxy->flashBackingStoreUpdates(updateInfo.updateRects);
    260257
    261258    if (shouldScroll)
Note: See TracChangeset for help on using the changeset viewer.