Changeset 47073 in webkit


Ignore:
Timestamp:
Aug 11, 2009 4:20:07 PM (15 years ago)
Author:
pkasting@chromium.org
Message:

https://bugs.webkit.org/show_bug.cgi?id=27965
Move cairo/ImageSourceCairo.cpp to ImageSource.cpp in preparation for
merging most of the other ImageSource*.cpp files with it.

Reviewed by Adam Treat.

  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/ImageSource.cpp: Copied from WebCore/platform/graphics/cairo/ImageSourceCairo.cpp.
  • platform/graphics/cairo/ImageSourceCairo.cpp: Removed.
Location:
trunk/WebCore
Files:
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r47071 r47073  
     12009-08-11  Peter Kasting  <pkasting@google.com>
     2
     3        Reviewed by Adam Treat.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=27965
     6        Move cairo/ImageSourceCairo.cpp to ImageSource.cpp in preparation for
     7        merging most of the other ImageSource*.cpp files with it.
     8
     9        * GNUmakefile.am:
     10        * WebCore.gypi:
     11        * WebCore.vcproj/WebCore.vcproj:
     12        * platform/graphics/ImageSource.cpp: Copied from WebCore/platform/graphics/cairo/ImageSourceCairo.cpp.
     13        * platform/graphics/cairo/ImageSourceCairo.cpp: Removed.
     14
    1152009-08-10  Brent Fulgham  <bfulgham@webkit.org>
    216
  • trunk/WebCore/GNUmakefile.am

    r47067 r47073  
    14701470        WebCore/platform/graphics/ImageBuffer.h \
    14711471        WebCore/platform/graphics/ImageObserver.h \
     1472        WebCore/platform/graphics/ImageSource.cpp \
    14721473        WebCore/platform/graphics/ImageSource.h \
    14731474        WebCore/platform/graphics/IntPoint.h \
     
    18611862        WebCore/platform/graphics/cairo/ImageBufferData.h \
    18621863        WebCore/platform/graphics/cairo/ImageCairo.cpp \
    1863         WebCore/platform/graphics/cairo/ImageSourceCairo.cpp \
    18641864        WebCore/platform/graphics/cairo/PathCairo.cpp \
    18651865        WebCore/platform/graphics/cairo/PatternCairo.cpp \
  • trunk/WebCore/WebCore.gypi

    r47036 r47073  
    17491749            'platform/graphics/cairo/ImageBufferData.h',
    17501750            'platform/graphics/cairo/ImageCairo.cpp',
    1751             'platform/graphics/cairo/ImageSourceCairo.cpp',
    17521751            'platform/graphics/cairo/PathCairo.cpp',
    17531752            'platform/graphics/cairo/PatternCairo.cpp',
     
    20612060            'platform/graphics/ImageObserver.h',
    20622061            'platform/graphics/ImageSource.h',
     2062            'platform/graphics/ImageSource.cpp',
    20632063            'platform/graphics/IntPoint.h',
    20642064            'platform/graphics/IntRect.cpp',
  • trunk/WebCore/WebCore.vcproj/WebCore.vcproj

    r47063 r47073  
    1848418484                                        RelativePath="..\platform\graphics\ImageObserver.h"
    1848518485                                        >
     18486                                </File>
     18487                                <File
     18488                                        RelativePath="..\platform\graphics\ImageSource.cpp"
     18489                                        >
     18490                                        <FileConfiguration
     18491                                                Name="Debug|Win32"
     18492                                                ExcludedFromBuild="true"
     18493                                                >
     18494                                                <Tool
     18495                                                        Name="VCCLCompilerTool"
     18496                                                />
     18497                                        </FileConfiguration>
     18498                                        <FileConfiguration
     18499                                                Name="Release|Win32"
     18500                                                ExcludedFromBuild="true"
     18501                                                >
     18502                                                <Tool
     18503                                                        Name="VCCLCompilerTool"
     18504                                                />
     18505                                        </FileConfiguration>
     18506                                        <FileConfiguration
     18507                                                Name="Debug_Internal|Win32"
     18508                                                ExcludedFromBuild="true"
     18509                                                >
     18510                                                <Tool
     18511                                                        Name="VCCLCompilerTool"
     18512                                                />
     18513                                        </FileConfiguration>
    1848618514                                </File>
    1848718515                                <File
     
    1966119689                                        </File>
    1966219690                                        <File
    19663                                                 RelativePath="..\platform\graphics\cairo\ImageSourceCairo.cpp"
    19664                                                 >
    19665                                                 <FileConfiguration
    19666                                                         Name="Debug|Win32"
    19667                                                         ExcludedFromBuild="true"
    19668                                                         >
    19669                                                         <Tool
    19670                                                                 Name="VCCLCompilerTool"
    19671                                                         />
    19672                                                 </FileConfiguration>
    19673                                                 <FileConfiguration
    19674                                                         Name="Release|Win32"
    19675                                                         ExcludedFromBuild="true"
    19676                                                         >
    19677                                                         <Tool
    19678                                                                 Name="VCCLCompilerTool"
    19679                                                         />
    19680                                                 </FileConfiguration>
    19681                                                 <FileConfiguration
    19682                                                         Name="Debug_Internal|Win32"
    19683                                                         ExcludedFromBuild="true"
    19684                                                         >
    19685                                                         <Tool
    19686                                                                 Name="VCCLCompilerTool"
    19687                                                         />
    19688                                                 </FileConfiguration>
    19689                                         </File>
    19690                                         <File
    1969119691                                                RelativePath="..\platform\graphics\cairo\PathCairo.cpp"
    1969219692                                                >
  • trunk/WebCore/platform/graphics/ImageSource.cpp

    r47044 r47073  
    3737#include "XBMImageDecoder.h"
    3838#include "SharedBuffer.h"
    39 #include <cairo.h>
    4039
    4140namespace WebCore {
Note: See TracChangeset for help on using the changeset viewer.