Changeset 152094 in webkit


Ignore:
Timestamp:
Jun 27, 2013 6:31:31 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Use consistent file names for WidgetBackingStoreGtkX11 class
https://bugs.webkit.org/show_bug.cgi?id=118124

Patch by Iago Toral Quiroga <itoral@igalia.com> on 2013-06-27
Reviewed by Carlos Garcia Campos.

Source/WebCore:

  • GNUmakefile.list.am:
  • PlatformGTK.cmake:
  • platform/gtk/GtkWidgetBackingStoreX11.cpp: Removed.
  • platform/gtk/GtkWidgetBackingStoreX11.h: Removed.
  • platform/gtk/WidgetBackingStoreGtkX11.cpp: Added.

(WebCore::WidgetBackingStoreGtkX11::create):
(WebCore::WidgetBackingStoreGtkX11::WidgetBackingStoreGtkX11):
(WebCore::WidgetBackingStoreGtkX11::~WidgetBackingStoreGtkX11):
(WebCore::WidgetBackingStoreGtkX11::cairoSurface):
(WebCore::WidgetBackingStoreGtkX11::scroll):

  • platform/gtk/WidgetBackingStoreGtkX11.h: Added.

Source/WebKit/gtk:

  • WebCoreSupport/ChromeClientGtk.cpp:

Source/WebKit2:

  • UIProcess/cairo/BackingStoreCairo.cpp:
Location:
trunk/Source
Files:
7 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152089 r152094  
     12013-06-27  Iago Toral Quiroga  <itoral@igalia.com>
     2
     3        Use consistent file names for WidgetBackingStoreGtkX11 class
     4        https://bugs.webkit.org/show_bug.cgi?id=118124
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * GNUmakefile.list.am:
     9        * PlatformGTK.cmake:
     10        * platform/gtk/GtkWidgetBackingStoreX11.cpp: Removed.
     11        * platform/gtk/GtkWidgetBackingStoreX11.h: Removed.
     12        * platform/gtk/WidgetBackingStoreGtkX11.cpp: Added.
     13        (WebCore::WidgetBackingStoreGtkX11::create):
     14        (WebCore::WidgetBackingStoreGtkX11::WidgetBackingStoreGtkX11):
     15        (WebCore::WidgetBackingStoreGtkX11::~WidgetBackingStoreGtkX11):
     16        (WebCore::WidgetBackingStoreGtkX11::cairoSurface):
     17        (WebCore::WidgetBackingStoreGtkX11::scroll):
     18        * platform/gtk/WidgetBackingStoreGtkX11.h: Added.
     19
    1202013-06-27  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
    221
  • trunk/Source/WebCore/GNUmakefile.list.am

    r152080 r152094  
    62706270        Source/WebCore/plugins/gtk/xembed.h
    62716271platformgtk_sources += \
    6272         Source/WebCore/platform/gtk/GtkWidgetBackingStoreX11.h \
    6273         Source/WebCore/platform/gtk/GtkWidgetBackingStoreX11.cpp \
     6272        Source/WebCore/platform/gtk/WidgetBackingStoreGtkX11.h \
     6273        Source/WebCore/platform/gtk/WidgetBackingStoreGtkX11.cpp \
    62746274        Source/WebCore/platform/cairo/WidgetBackingStoreCairo.h \
    62756275        Source/WebCore/platform/cairo/WidgetBackingStoreCairo.cpp
  • trunk/Source/WebCore/PlatformGTK.cmake

    r150460 r152094  
    7979    platform/gtk/GtkUtilities.cpp
    8080    platform/gtk/GtkVersioning.c
    81     platform/gtk/GtkWidgetBackingStoreX11.cpp
    8281    platform/gtk/KeyBindingTranslator.cpp
    8382    platform/gtk/LanguageGtk.cpp
     
    109108    platform/gtk/UserAgentGtk.cpp
    110109    platform/gtk/WebKitAuthenticationWidget.cpp
     110    platform/gtk/WidgetBackingStoreGtkX11.cpp
    111111    platform/gtk/WidgetGtk.cpp
    112112    platform/gtk/WidgetRenderingContext.cpp
  • trunk/Source/WebCore/platform/gtk/WidgetBackingStoreGtkX11.cpp

    r152093 r152094  
    1818
    1919#include "config.h"
    20 #include "GtkWidgetBackingStoreX11.h"
     20#include "WidgetBackingStoreGtkX11.h"
    2121
    2222#include "GtkVersioning.h"
     
    7171    cairo_surface_flush(m_surface.get());
    7272    XCopyArea(m_display, m_pixmap, m_pixmap, m_gc,
    73               targetRect.x() - scrollOffset.width(), targetRect.y() - scrollOffset.height(),
    74               targetRect.width(), targetRect.height(),
    75               targetRect.x(), targetRect.y());
     73        targetRect.x() - scrollOffset.width(), targetRect.y() - scrollOffset.height(),
     74        targetRect.width(), targetRect.height(),
     75        targetRect.x(), targetRect.y());
    7676    cairo_surface_mark_dirty_rectangle(m_surface.get(),
    77                                        targetRect.x(), targetRect.y(),
    78                                        targetRect.width(), targetRect.height());
     77        targetRect.x(), targetRect.y(),
     78        targetRect.width(), targetRect.height());
    7979}
    8080
  • trunk/Source/WebCore/platform/gtk/WidgetBackingStoreGtkX11.h

    r152093 r152094  
    1717 */
    1818
    19 #ifndef GtkWidgetBackingStoreX11_h
    20 #define GtkWidgetBackingStoreX11_h
     19#ifndef WidgetBackingStoreGtkX11_h
     20#define WidgetBackingStoreGtkX11_h
    2121
    2222#include "WidgetBackingStore.h"
  • trunk/Source/WebKit/gtk/ChangeLog

    r151832 r152094  
     12013-06-27  Iago Toral Quiroga  <itoral@igalia.com>
     2
     3        Use consistent file names for WidgetBackingStoreGtkX11 class
     4        https://bugs.webkit.org/show_bug.cgi?id=118124
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * WebCoreSupport/ChromeClientGtk.cpp:
     9
    1102013-06-21  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    211
  • trunk/Source/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp

    r151398 r152094  
    9797
    9898#ifdef GDK_WINDOWING_X11
    99 #include "GtkWidgetBackingStoreX11.h"
     99#include "WidgetBackingStoreGtkX11.h"
    100100#endif
    101101#include "WidgetBackingStoreCairo.h"
  • trunk/Source/WebKit2/ChangeLog

    r152084 r152094  
     12013-06-27  Iago Toral Quiroga  <itoral@igalia.com>
     2
     3        Use consistent file names for WidgetBackingStoreGtkX11 class
     4        https://bugs.webkit.org/show_bug.cgi?id=118124
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * UIProcess/cairo/BackingStoreCairo.cpp:
     9
    1102013-06-27  Alberto Garcia  <agarcia@igalia.com>
    211
  • trunk/Source/WebKit2/UIProcess/cairo/BackingStoreCairo.cpp

    r151398 r152094  
    3636
    3737#if PLATFORM(GTK) && defined(GDK_WINDOWING_X11)
    38 #include <WebCore/GtkWidgetBackingStoreX11.h>
     38#include <WebCore/WidgetBackingStoreGtkX11.h>
    3939#include <gdk/gdkx.h>
    4040#endif
Note: See TracChangeset for help on using the changeset viewer.