Changeset 57436 in webkit


Ignore:
Timestamp:
Apr 10, 2010 10:03:10 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-10 Vangelis Kokkevis <vangelis@chromium.org>

Reviewed by Dimitri Glazkov.

Moving files associated with the GPU compositor from platform/graphics/skia to platform/graphics/chromium. Class
rename was done in a previous CL, this CL does the file move and rename.
https://bugs.webkit.org/show_bug.cgi?id=37231

No new functionality, no new tests.

  • WebCore.gypi:
  • platform/graphics/chromium/GraphicsLayerChromium.cpp: Copied from WebCore/platform/graphics/skia/GraphicsLayerSkia.cpp.
  • platform/graphics/chromium/GraphicsLayerChromium.h: Copied from WebCore/platform/graphics/skia/GraphicsLayerSkia.h.
  • platform/graphics/chromium/LayerChromium.cpp: Copied from WebCore/platform/graphics/skia/LayerSkia.cpp.
  • platform/graphics/chromium/LayerChromium.h: Copied from WebCore/platform/graphics/skia/LayerSkia.h.
  • platform/graphics/chromium/LayerRendererChromium.cpp: Copied from WebCore/platform/graphics/skia/LayerRendererSkia.cpp.
  • platform/graphics/chromium/LayerRendererChromium.h: Copied from WebCore/platform/graphics/skia/LayerRendererSkia.h.
  • platform/graphics/skia/GraphicsLayerSkia.cpp: Removed.
  • platform/graphics/skia/GraphicsLayerSkia.h: Removed.
  • platform/graphics/skia/LayerRendererSkia.cpp: Removed.
  • platform/graphics/skia/LayerRendererSkia.h: Removed.
  • platform/graphics/skia/LayerSkia.cpp: Removed.
  • platform/graphics/skia/LayerSkia.h: Removed.

2010-04-10 Vangelis Kokkevis <vangelis@chromium.org>

Reviewed by Dimitri Glazkov.

Include file change as a result of renaming LayerRenderSkia.h to LayerRenderChromium.h
https://bugs.webkit.org/show_bug.cgi?id=37231

  • src/WebViewImpl.h:
Location:
trunk
Files:
4 edited
6 moved

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r57433 r57436  
     12010-04-10  Vangelis Kokkevis  <vangelis@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Moving files associated with the GPU compositor from platform/graphics/skia to platform/graphics/chromium. Class
     6        rename was done in a previous CL, this CL does the file move and rename.
     7        https://bugs.webkit.org/show_bug.cgi?id=37231
     8
     9        No new functionality, no new tests.
     10
     11        * WebCore.gypi:
     12        * platform/graphics/chromium/GraphicsLayerChromium.cpp: Copied from WebCore/platform/graphics/skia/GraphicsLayerSkia.cpp.
     13        * platform/graphics/chromium/GraphicsLayerChromium.h: Copied from WebCore/platform/graphics/skia/GraphicsLayerSkia.h.
     14        * platform/graphics/chromium/LayerChromium.cpp: Copied from WebCore/platform/graphics/skia/LayerSkia.cpp.
     15        * platform/graphics/chromium/LayerChromium.h: Copied from WebCore/platform/graphics/skia/LayerSkia.h.
     16        * platform/graphics/chromium/LayerRendererChromium.cpp: Copied from WebCore/platform/graphics/skia/LayerRendererSkia.cpp.
     17        * platform/graphics/chromium/LayerRendererChromium.h: Copied from WebCore/platform/graphics/skia/LayerRendererSkia.h.
     18        * platform/graphics/skia/GraphicsLayerSkia.cpp: Removed.
     19        * platform/graphics/skia/GraphicsLayerSkia.h: Removed.
     20        * platform/graphics/skia/LayerRendererSkia.cpp: Removed.
     21        * platform/graphics/skia/LayerRendererSkia.h: Removed.
     22        * platform/graphics/skia/LayerSkia.cpp: Removed.
     23        * platform/graphics/skia/LayerSkia.h: Removed.
     24
    1252010-04-10  Robert Hogan  <robert@webkit.org>
    226
  • trunk/WebCore/WebCore.gypi

    r57229 r57436  
    20572057            'platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
    20582058            'platform/graphics/chromium/GlyphPageTreeNodeLinux.cpp',
     2059            'platform/graphics/chromium/GraphicsLayerChromium.cpp',
     2060            'platform/graphics/chromium/GraphicsLayerChromium.h',
    20592061            'platform/graphics/chromium/IconChromiumLinux.cpp',
    20602062            'platform/graphics/chromium/IconChromiumMac.cpp',
     
    20622064            'platform/graphics/chromium/ImageBufferData.h',
    20632065            'platform/graphics/chromium/ImageChromiumMac.mm',
     2066            'platform/graphics/chromium/LayerChromium.cpp',
     2067            'platform/graphics/chromium/LayerChromium.h',
     2068            'platform/graphics/chromium/LayerRendererChromium.cpp',
     2069            'platform/graphics/chromium/LayerRendererChromium.h',
    20642070            'platform/graphics/chromium/MediaPlayerPrivateChromium.h',
    20652071            'platform/graphics/chromium/PlatformIcon.h',
     
    21892195            'platform/graphics/skia/GraphicsContextSkia.cpp',
    21902196            'platform/graphics/skia/GraphicsContext3DSkia.cpp',
    2191             'platform/graphics/skia/GraphicsLayerSkia.cpp',
    2192             'platform/graphics/skia/GraphicsLayerSkia.h',
    21932197            'platform/graphics/skia/ImageBufferSkia.cpp',
    21942198            'platform/graphics/skia/ImageSkia.cpp',
    21952199            'platform/graphics/skia/IntPointSkia.cpp',
    21962200            'platform/graphics/skia/IntRectSkia.cpp',
    2197             'platform/graphics/skia/LayerRendererSkia.cpp',
    2198             'platform/graphics/skia/LayerRendererSkia.h',
    2199             'platform/graphics/skia/LayerSkia.cpp',
    2200             'platform/graphics/skia/LayerSkia.h',
    22012201            'platform/graphics/skia/NativeImageSkia.cpp',
    22022202            'platform/graphics/skia/NativeImageSkia.h',
  • trunk/WebCore/platform/graphics/chromium/GraphicsLayerChromium.cpp

    r57435 r57436  
    4444#if USE(ACCELERATED_COMPOSITING)
    4545
    46 #include "GraphicsLayerSkia.h"
     46#include "GraphicsLayerChromium.h"
    4747
    4848#include "FloatConversion.h"
    4949#include "FloatRect.h"
    5050#include "Image.h"
    51 #include "LayerSkia.h"
     51#include "LayerChromium.h"
    5252#include "PlatformString.h"
    5353#include "SystemTime.h"
  • trunk/WebCore/platform/graphics/chromium/GraphicsLayerChromium.h

    r57435 r57436  
    2929 */
    3030
    31 #ifndef GraphicsLayerSkia_h
    32 #define GraphicsLayerSkia_h
     31#ifndef GraphicsLayerChromium_h
     32#define GraphicsLayerChromium_h
    3333
    3434#if USE(ACCELERATED_COMPOSITING)
  • trunk/WebCore/platform/graphics/chromium/LayerChromium.cpp

    r57435 r57436  
    3333#if USE(ACCELERATED_COMPOSITING)
    3434
    35 #include "LayerSkia.h"
     35#include "LayerChromium.h"
    3636
    3737#include "PlatformContextSkia.h"
  • trunk/WebCore/platform/graphics/chromium/LayerChromium.h

    r57435 r57436  
    3030
    3131
    32 #ifndef LayerSkia_h
    33 #define LayerSkia_h
     32#ifndef LayerChromium_h
     33#define LayerChromium_h
    3434
    3535#if USE(ACCELERATED_COMPOSITING)
     
    3737#include "FloatPoint.h"
    3838#include "GraphicsContext.h"
    39 #include "GraphicsLayerSkia.h"
     39#include "GraphicsLayerChromium.h"
    4040#include "PlatformString.h"
    4141#include "StringHash.h"
  • trunk/WebCore/platform/graphics/chromium/LayerRendererChromium.cpp

    r57435 r57436  
    3333
    3434#if USE(ACCELERATED_COMPOSITING)
    35 #include "LayerRendererSkia.h"
     35#include "LayerRendererChromium.h"
    3636
    37 #include "LayerSkia.h"
     37#include "LayerChromium.h"
    3838#include "PlatformContextSkia.h"
    3939#include "skia/ext/platform_canvas.h"
  • trunk/WebCore/platform/graphics/chromium/LayerRendererChromium.h

    r57435 r57436  
    3030
    3131
    32 #ifndef LayerRendererSkia_h
    33 #define LayerRendererSkia_h
     32#ifndef LayerRendererChromium_h
     33#define LayerRendererChromium_h
    3434
    3535#if USE(ACCELERATED_COMPOSITING)
    3636
    3737#include "IntRect.h"
    38 #include "LayerSkia.h"
     38#include "LayerChromium.h"
    3939#include <wtf/Noncopyable.h>
    4040#include <wtf/PassOwnPtr.h>
  • trunk/WebKit/chromium/ChangeLog

    r57431 r57436  
     12010-04-10  Vangelis Kokkevis  <vangelis@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Include file change as a result of renaming LayerRenderSkia.h to LayerRenderChromium.h
     6        https://bugs.webkit.org/show_bug.cgi?id=37231
     7
     8        * src/WebViewImpl.h:
     9
    1102010-04-10  Rafael Weinstein  <rafaelw@chromium.org>
    211
  • trunk/WebKit/chromium/src/WebViewImpl.h

    r57176 r57436  
    4646#include "GraphicsLayer.h"
    4747#include "InspectorClientImpl.h"
    48 #include "LayerRendererSkia.h"
     48#include "LayerRendererChromium.h"
    4949#include "NotificationPresenterImpl.h"
    5050
Note: See TracChangeset for help on using the changeset viewer.