Changeset 211197 in webkit
- Timestamp:
- Jan 25, 2017, 8:05:25 PM (8 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r211193 r211197 1 2017-01-25 Tim Horton <timothy_horton@apple.com> 2 3 Stop inheriting from UIWebScrollView, just use UIScrollView 4 https://bugs.webkit.org/show_bug.cgi?id=167440 5 <rdar://problem/7729691> 6 7 Reviewed by Simon Fraser. 8 9 * UIProcess/API/Cocoa/WKWebView.mm: 10 (-[WKWebView scrollViewWillBeginDragging:]): 11 * UIProcess/ios/WKScrollView.h: 12 * UIProcess/ios/WKScrollView.mm: 13 (-[WKScrollView initWithFrame:]): Deleted. 14 (-[WKScrollView setDecelerationRate:]): Deleted. 15 Inherit directly from UIScrollView, no need for UIWebScrollView. 16 Set the few settings we care about directly. 17 This has the side effect of reducing the default rate of scroll deceleration. 18 1 19 2017-01-25 Matt Rajca <mrajca@apple.com> 2 20 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm
r211165 r211197 1882 1882 WebKit::RemoteScrollingCoordinatorProxy* coordinator = _page->scrollingCoordinatorProxy(); 1883 1883 ASSERT(scrollView == _scrollView.get()); 1884 CGFloat scrollDecelerationFactor = (coordinator && coordinator->shouldSetScrollViewDecelerationRateFast()) ? UIScrollViewDecelerationRateFast : [_scrollView preferredScrollDecelerationFactor];1884 CGFloat scrollDecelerationFactor = (coordinator && coordinator->shouldSetScrollViewDecelerationRateFast()) ? UIScrollViewDecelerationRateFast : UIScrollViewDecelerationRateNormal; 1885 1885 scrollView.horizontalScrollDecelerationFactor = scrollDecelerationFactor; 1886 1886 scrollView.verticalScrollDecelerationFactor = scrollDecelerationFactor; -
trunk/Source/WebKit2/UIProcess/ios/WKScrollView.h
r180441 r211197 30 30 @class WKWebView; 31 31 32 @interface WKScrollView : UI WebScrollView32 @interface WKScrollView : UIScrollView 33 33 34 34 @property (nonatomic, assign) WKWebView <UIScrollViewDelegate> *internalDelegate; 35 @property (nonatomic, readonly) CGFloat preferredScrollDecelerationFactor;36 35 37 36 - (void)_setContentSizePreservingContentOffsetDuringRubberband:(CGSize)contentSize; -
trunk/Source/WebKit2/UIProcess/ios/WKScrollView.mm
r203541 r211197 119 119 - (id)initWithFrame:(CGRect)frame 120 120 { 121 if (self = [super initWithFrame:frame]) { 122 ASSERT([self verticalScrollDecelerationFactor] == [self horizontalScrollDecelerationFactor]); 123 // FIXME: use UIWebPreferredScrollDecelerationFactor() from UIKit: rdar://problem/18931007. 124 _preferredScrollDecelerationFactor = [self verticalScrollDecelerationFactor]; 125 } 121 self = [super initWithFrame:frame]; 122 123 if (!self) 124 return nil; 125 126 self.alwaysBounceVertical = YES; 127 self.directionalLockEnabled = YES; 126 128 127 129 return self; … … 274 276 } 275 277 276 - (void)setDecelerationRate:(CGFloat)decelerationRate277 {278 [super setDecelerationRate:decelerationRate];279 _preferredScrollDecelerationFactor = decelerationRate;280 }281 282 278 @end 283 279
Note:
See TracChangeset
for help on using the changeset viewer.