Changeset 229583 in webkit


Ignore:
Timestamp:
Mar 13, 2018 1:10:40 PM (6 years ago)
Author:
dino@apple.com
Message:

WKSystemPreviewView needs to implement some of UIScrollViewDelegate
https://bugs.webkit.org/show_bug.cgi?id=183607
<rdar://problem/38427622>

Reviewed by Antoine Quint.

Add an empty implementation of scrollViewDidScroll.

  • UIProcess/ios/WKSystemPreviewView.mm:

(-[WKSystemPreviewView scrollViewDidScroll:]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r229575 r229583  
     12018-03-13  Dean Jackson  <dino@apple.com>
     2
     3        WKSystemPreviewView needs to implement some of UIScrollViewDelegate
     4        https://bugs.webkit.org/show_bug.cgi?id=183607
     5        <rdar://problem/38427622>
     6
     7        Reviewed by Antoine Quint.
     8
     9        Add an empty implementation of scrollViewDidScroll.
     10
     11        * UIProcess/ios/WKSystemPreviewView.mm:
     12        (-[WKSystemPreviewView scrollViewDidScroll:]):
     13
    1142018-03-13  Jiewen Tan  <jiewen_tan@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/ios/WKSystemPreviewView.mm

    r229573 r229583  
    162162}
    163163
     164#pragma mark UIScrollViewDelegate
     165
     166// FIXME: This class, and WKWebContentProvider itself, shouldn't need to be a UIScrollViewDelegate.
     167
     168- (void)scrollViewDidScroll:(UIScrollView *)scrollView
     169{
     170}
     171
    164172@end
    165173
Note: See TracChangeset for help on using the changeset viewer.