Changeset 161500 in webkit


Ignore:
Timestamp:
Jan 8, 2014 7:24:53 AM (10 years ago)
Author:
berto@igalia.com
Message:

Fix some compilation warnings
https://bugs.webkit.org/show_bug.cgi?id=126635

Reviewed by Csaba Osztrogonác.

Source/WebCore:

Remove code that is no longer being used.

  • platform/graphics/cairo/GraphicsContextCairo.cpp:
  • platform/graphics/texmap/GraphicsLayerTextureMapper.h:
  • platform/gtk/PopupMenuGtk.cpp:
  • platform/gtk/RedirectedXCompositeWindow.h:

Tools:

  • GtkLauncher/main.c:

(createWindow): This function is not supposed to receive any
parameter, yet we are passing one.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r161497 r161500  
     12014-01-08  Alberto Garcia  <berto@igalia.com>
     2
     3        Fix some compilation warnings
     4        https://bugs.webkit.org/show_bug.cgi?id=126635
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Remove code that is no longer being used.
     9
     10        * platform/graphics/cairo/GraphicsContextCairo.cpp:
     11        * platform/graphics/texmap/GraphicsLayerTextureMapper.h:
     12        * platform/gtk/PopupMenuGtk.cpp:
     13        * platform/gtk/RedirectedXCompositeWindow.h:
     14
    1152014-01-08  Zan Dobersek  <zdobersek@igalia.com>
    216
  • trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp

    r158392 r161500  
    10251025}
    10261026
    1027 static inline FloatPoint getPhase(const FloatRect& dest, const FloatRect& tile)
    1028 {
    1029     FloatPoint phase = dest.location();
    1030     phase.move(-tile.x(), -tile.y());
    1031 
    1032     return phase;
    1033 }
    1034 
    10351027void GraphicsContext::fillRoundedRect(const IntRect& r, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace)
    10361028{
  • trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h

    r156282 r161500  
    168168    int m_changeMask;
    169169    bool m_needsDisplay;
    170     bool m_hasOwnBackingStore;
    171170    bool m_fixedToViewport;
    172171    Color m_solidColor;
  • trunk/Source/WebCore/platform/gtk/PopupMenuGtk.cpp

    r157124 r161500  
    3737
    3838namespace WebCore {
    39 
    40 static const uint32_t gSearchTimeoutMs = 1000;
    4139
    4240PopupMenuGtk::PopupMenuGtk(PopupMenuClient* client)
  • trunk/Source/WebCore/platform/gtk/RedirectedXCompositeWindow.h

    r146196 r161500  
    7171    OwnPtr<GLContext> m_context;
    7272    RefPtr<cairo_surface_t> m_surface;
    73     unsigned int m_pendingResizeSourceId;
    7473    bool m_needsNewPixmapAfterResize;
    7574
  • trunk/Tools/ChangeLog

    r161499 r161500  
     12014-01-08  Alberto Garcia  <berto@igalia.com>
     2
     3        Fix some compilation warnings
     4        https://bugs.webkit.org/show_bug.cgi?id=126635
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * GtkLauncher/main.c:
     9        (createWindow): This function is not supposed to receive any
     10        parameter, yet we are passing one.
     11
    1122014-01-08  Brian Holt  <brian.holt@samsung.com>
    213
  • trunk/Tools/GtkLauncher/main.c

    r160805 r161500  
    336336    vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
    337337#endif
    338     statusbar = createStatusbar(webView);
     338    statusbar = createStatusbar();
    339339    gtk_box_pack_start(GTK_BOX(vbox), createToolbar(window, uriEntry, webView), FALSE, FALSE, 0);
    340340    gtk_box_pack_start(GTK_BOX(vbox), createBrowser(window, uriEntry, statusbar, webView, vbox), TRUE, TRUE, 0);
Note: See TracChangeset for help on using the changeset viewer.