Changeset 160521 in webkit


Ignore:
Timestamp:
Dec 12, 2013, 5:45:45 PM (12 years ago)
Author:
timothy_horton@apple.com
Message:

Build fix for 32-bit.

There was no reason for these to be CGFloat.

  • UIProcess/mac/ViewGestureController.cpp:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160520 r160521  
     12013-12-12  Tim Horton  <timothy_horton@apple.com>
     2
     3        Build fix for 32-bit.
     4
     5        There was no reason for these to be CGFloat.
     6
     7        * UIProcess/mac/ViewGestureController.cpp:
     8
    192013-12-12  Tim Horton  <timothy_horton@apple.com>
    210
  • trunk/Source/WebKit2/UIProcess/mac/ViewGestureController.cpp

    r160520 r160521  
    3333using namespace WebCore;
    3434
    35 static const CGFloat minMagnification = 0.75;
    36 static const CGFloat maxMagnification = 3;
     35static const double minMagnification = 0.75;
     36static const double maxMagnification = 3;
    3737
    38 static const CGFloat zoomOutBoost = 1.6;
    39 static const CGFloat zoomOutResistance = 0.10;
     38static const double zoomOutBoost = 1.6;
     39static const double zoomOutResistance = 0.10;
    4040
    4141namespace WebKit {
Note: See TracChangeset for help on using the changeset viewer.