Changeset 160521 in webkit
- Timestamp:
- Dec 12, 2013, 5:45:45 PM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r160520 r160521 1 2013-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 1 9 2013-12-12 Tim Horton <timothy_horton@apple.com> 2 10 -
trunk/Source/WebKit2/UIProcess/mac/ViewGestureController.cpp
r160520 r160521 33 33 using namespace WebCore; 34 34 35 static const CGFloatminMagnification = 0.75;36 static const CGFloatmaxMagnification = 3;35 static const double minMagnification = 0.75; 36 static const double maxMagnification = 3; 37 37 38 static const CGFloatzoomOutBoost = 1.6;39 static const CGFloatzoomOutResistance = 0.10;38 static const double zoomOutBoost = 1.6; 39 static const double zoomOutResistance = 0.10; 40 40 41 41 namespace WebKit {
Note:
See TracChangeset
for help on using the changeset viewer.