Changeset 170103 in webkit


Ignore:
Timestamp:
Jun 18, 2014 10:20:39 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Compile errors when trying to compile CA code.
https://bugs.webkit.org/show_bug.cgi?id=134030

Patch by peavo@outlook.com <peavo@outlook.com> on 2014-06-18
Reviewed by Simon Fraser.

WinCairo does not USE(CA).

  • WebCore.vcxproj/WebCore.vcxproj:
  • platform/graphics/ca/TileController.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r170091 r170103  
     12014-06-18  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compile errors when trying to compile CA code.
     4        https://bugs.webkit.org/show_bug.cgi?id=134030
     5
     6        Reviewed by Simon Fraser.
     7
     8        WinCairo does not USE(CA).
     9
     10        * WebCore.vcxproj/WebCore.vcxproj:
     11        * platform/graphics/ca/TileController.h:
     12
    1132014-06-17  Tim Horton  <timothy_horton@apple.com>
    214
  • trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj

    r170037 r170103  
    72297229      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
    72307230    </ClCompile>
    7231     <ClCompile Include="..\platform\graphics\ca\TileCoverageMap.cpp" />
     7231    <ClCompile Include="..\platform\graphics\ca\TileCoverageMap.cpp">
     7232      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>
     7233      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
     7234    </ClCompile>
    72327235    <ClCompile Include="..\platform\graphics\ca\TileGrid.cpp">
    72337236      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>
  • trunk/Source/WebCore/platform/graphics/ca/TileController.h

    r169919 r170103  
    151151    virtual double retainedTileBackingStoreMemory() const override;
    152152    virtual IntRect tileCoverageRect() const override;
     153#if USE(CA)
    153154    virtual PlatformCALayer* tiledScrollingIndicatorLayer() override;
     155#endif
    154156    virtual void setScrollingModeIndication(ScrollingModeIndication) override;
    155157    virtual void setTileMargins(int marginTop, int marginBottom, int marginLeft, int marginRight) override;
Note: See TracChangeset for help on using the changeset viewer.