Changeset 132972 in webkit


Ignore:
Timestamp:
Oct 30, 2012 6:39:45 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Coordinated Graphics: Remove unused methods
https://bugs.webkit.org/show_bug.cgi?id=100799

Patch by Jae Hyun Park <jae.park@company100.net> on 2012-10-30
Reviewed by Noam Rosenthal.

Currently, there are several unused methods regarding Coordinated
Graphics. This patch removes those unused methods.

Source/WebCore:

No new tests (No change in behavior).

  • platform/graphics/texmap/TextureMapperGL.cpp:

Source/WebKit2:

  • UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h:

(LayerTreeCoordinatorProxy):

  • UIProcess/DrawingAreaProxy.h:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r132971 r132972  
     12012-10-30  Jae Hyun Park  <jae.park@company100.net>
     2
     3        Coordinated Graphics: Remove unused methods
     4        https://bugs.webkit.org/show_bug.cgi?id=100799
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Currently, there are several unused methods regarding Coordinated
     9        Graphics. This patch removes those unused methods.
     10
     11        No new tests (No change in behavior).
     12
     13        * platform/graphics/texmap/TextureMapperGL.cpp:
     14
    1152012-10-30  Hans Muller  <hmuller@adobe.com>
    216
  • trunk/Source/WebCore/platform/graphics/texmap/TextureMapperGL.cpp

    r132911 r132972  
    3333#include <wtf/PassRefPtr.h>
    3434#include <wtf/RefCounted.h>
    35 
    36 #if USE(GRAPHICS_SURFACE)
    37 #include "GraphicsSurface.h"
    38 #endif
    3935
    4036#if PLATFORM(QT)
  • trunk/Source/WebKit2/ChangeLog

    r132963 r132972  
     12012-10-30  Jae Hyun Park  <jae.park@company100.net>
     2
     3        Coordinated Graphics: Remove unused methods
     4        https://bugs.webkit.org/show_bug.cgi?id=100799
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Currently, there are several unused methods regarding Coordinated
     9        Graphics. This patch removes those unused methods.
     10
     11        * UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h:
     12        (LayerTreeCoordinatorProxy):
     13        * UIProcess/DrawingAreaProxy.h:
     14
    1152012-10-30  Joseph Pecoraro  <pecoraro@apple.com>
    216
  • trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h

    r132742 r132972  
    4040#include <wtf/HashSet.h>
    4141
    42 #if PLATFORM(QT)
    43 QT_BEGIN_NAMESPACE
    44 class QSGNode;
    45 QT_END_NAMESPACE
    46 #endif
    47 
    4842namespace WebKit {
    4943
     
    6357    void deleteCompositingLayer(WebLayerID);
    6458    void setRootCompositingLayer(WebLayerID);
    65     void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::MessageDecoder&);
    66     void purgeGLResources();
    6759    void setContentsSize(const WebCore::FloatSize&);
    6860    void setVisibleContentsRect(const WebCore::FloatRect&, float scale, const WebCore::FloatPoint& trajectoryVector);
  • trunk/Source/WebKit2/UIProcess/DrawingAreaProxy.h

    r131807 r132972  
    3535#include <stdint.h>
    3636#include <wtf/Noncopyable.h>
    37 
    38 #if PLATFORM(QT)
    39 QT_BEGIN_NAMESPACE
    40 class QPainter;
    41 QT_END_NAMESPACE
    42 #elif PLATFORM(GTK)
    43 typedef struct _cairo cairo_t;
    44 #endif
    4537
    4638namespace CoreIPC {
     
    9587    virtual WebCore::IntRect viewportVisibleRect() const { return contentsRect(); }
    9688    virtual WebCore::IntRect contentsRect() const;
    97     virtual bool isBackingStoreReady() const { return true; }
    9889    LayerTreeCoordinatorProxy* layerTreeCoordinatorProxy() const { return m_layerTreeCoordinatorProxy.get(); }
    9990    virtual void setVisibleContentsRect(const WebCore::FloatRect& /* visibleContentsRect */, float /* scale */, const WebCore::FloatPoint& /* trajectoryVector */) { }
    100     virtual void createTileForLayer(int /* layerID */, int /* tileID */, const WebKit::UpdateInfo&) { }
    101     virtual void updateTileForLayer(int /* layerID */, int /* tileID */, const WebKit::UpdateInfo&) { }
    102     virtual void removeTileForLayer(int /* layerID */, int /* tileID */) { }
    10391    virtual void didReceiveLayerTreeCoordinatorProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::MessageDecoder&);
    10492
Note: See TracChangeset for help on using the changeset viewer.