Changeset 95248 in webkit


Ignore:
Timestamp:
Sep 15, 2011 6:10:40 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r95243 and r95246.
http://trac.webkit.org/changeset/95243
http://trac.webkit.org/changeset/95246
https://bugs.webkit.org/show_bug.cgi?id=68202

Broke the Windows build (Requested by smfr on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-09-15

  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/ca/win/LayerChangesFlusher.cpp:

(WebCore::LayerChangesFlusher::hookCallback):

  • platform/graphics/ca/win/PlatformCAAnimationWin.cpp:

(PlatformCAAnimation::copy):

  • platform/win/StructuredExceptionHandlerSupressor.h: Removed.
Location:
trunk/Source/WebCore
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95246 r95248  
     12011-09-15  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r95243 and r95246.
     4        http://trac.webkit.org/changeset/95243
     5        http://trac.webkit.org/changeset/95246
     6        https://bugs.webkit.org/show_bug.cgi?id=68202
     7
     8        Broke the Windows build (Requested by smfr on #webkit).
     9
     10        * WebCore.vcproj/WebCore.vcproj:
     11        * platform/graphics/ca/win/LayerChangesFlusher.cpp:
     12        (WebCore::LayerChangesFlusher::hookCallback):
     13        * platform/graphics/ca/win/PlatformCAAnimationWin.cpp:
     14        (PlatformCAAnimation::copy):
     15        * platform/win/StructuredExceptionHandlerSupressor.h: Removed.
     16
    1172011-09-15  Simon Fraser  <simon.fraser@apple.com>
    218
  • trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj

    r95246 r95248  
    2732527325                                        >
    2732627326                                </File>
    27327                 <File
    27328                     RelativePath="..\platform\win\StructuredExceptionHandlerSupressor.h"
    27329                     >
    27330                     <FileConfiguration
    27331                         Name="Debug|Win32"
    27332                         >
    27333                         <Tool
    27334                             Name="VCCLCompilerTool"
    27335                             DisableSpecificWarnings="4733"
    27336                         />
    27337                     </FileConfiguration>
    27338                     <FileConfiguration
    27339                         Name="Release|Win32"
    27340                         >
    27341                         <Tool
    27342                             Name="VCCLCompilerTool"
    27343                             DisableSpecificWarnings="4733"
    27344                         />
    27345                     </FileConfiguration>
    27346                     <FileConfiguration
    27347                         Name="Debug_Cairo_CFLite|Win32"
    27348                         >
    27349                         <Tool
    27350                             Name="VCCLCompilerTool"
    27351                             DisableSpecificWarnings="4733"
    27352                         />
    27353                     </FileConfiguration>
    27354                     <FileConfiguration
    27355                         Name="Release_Cairo_CFLite|Win32"
    27356                         >
    27357                         <Tool
    27358                             Name="VCCLCompilerTool"
    27359                             DisableSpecificWarnings="4733"
    27360                         />
    27361                     </FileConfiguration>
    27362                     <FileConfiguration
    27363                         Name="Debug_All|Win32"
    27364                         >
    27365                         <Tool
    27366                             Name="VCCLCompilerTool"
    27367                             DisableSpecificWarnings="4733"
    27368                         />
    27369                     </FileConfiguration>
    27370                     <FileConfiguration
    27371                         Name="Production|Win32"
    27372                         >
    27373                         <Tool
    27374                             Name="VCCLCompilerTool"
    27375                             DisableSpecificWarnings="4733"
    27376                         />
    27377                     </FileConfiguration>
    27378                 </File>
    2737927327                                <File
    2738027328                                        RelativePath="..\platform\win\SystemInfo.cpp"
     
    3022630174                                                        RelativePath="..\platform\graphics\ca\win\LayerChangesFlusher.cpp"
    3022730175                                                        >
    30228                                                         <FileConfiguration
    30229                             Name="Debug|Win32"
    30230                             >
    30231                             <Tool
    30232                             Name="VCCLCompilerTool"
    30233                             DisableSpecificWarnings="4733"
    30234                             />
    30235                                                         </FileConfiguration>
    3023630176                                                        <FileConfiguration
    3023730177                                                                Name="Debug_Cairo_CFLite|Win32"
  • trunk/Source/WebCore/platform/graphics/ca/win/LayerChangesFlusher.cpp

    r95243 r95248  
    3030
    3131#include "AbstractCACFLayerTreeHost.h"
    32 #include "StructuredExceptionHandlerSupressor.h"
    3332#include <wtf/StdLibExtras.h>
    3433#include <wtf/Vector.h>
     
    7372LRESULT LayerChangesFlusher::hookCallback(int code, WPARAM wParam, LPARAM lParam)
    7473{
    75     // Supress the exception handler Windows puts around all hook calls so we can
    76     // crash for debugging purposes if an exception is hit.
    77     StructuredExceptionHandlerSupressor supressor;
    78 
    7974    return shared().hookFired(code, wParam, lParam);
    8075}
  • trunk/Source/WebCore/platform/graphics/ca/win/PlatformCAAnimationWin.cpp

    r95243 r95248  
    184184    animation->setAdditive(isAdditive());
    185185    animation->copyTimingFunctionFrom(this);
    186     if (valueFunction())
    187         animation->setValueFunction(valueFunction());
     186    animation->setValueFunction(valueFunction());
    188187   
    189188    // Copy the specific Basic or Keyframe values
Note: See TracChangeset for help on using the changeset viewer.