Changeset 176116 in webkit
- Timestamp:
- Nov 13, 2014, 10:57:52 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r176112 r176116 1 2014-11-13 Dan Bernstein <mitz@apple.com> 2 3 Two WKWebView internal methods are implemented in a category 4 https://bugs.webkit.org/show_bug.cgi?id=138728 5 6 Reviewed by Tim HOrton. 7 8 Moved the implementations from the category to the class. 9 10 * UIProcess/API/Cocoa/WKWebView.mm: 11 (-[WKWebView _ignoresNonWheelMouseEvents]): 12 (-[WKWebView _setIgnoresNonWheelMouseEvents:]): 13 1 14 2014-11-13 Myles C. Maxfield <mmaxfield@apple.com> 2 15 -
trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm
r176097 r176116 1589 1589 } 1590 1590 1591 - (BOOL)_ignoresNonWheelMouseEvents 1592 { 1593 return [_wkView _ignoresNonWheelMouseEvents]; 1594 } 1595 1596 - (void)_setIgnoresNonWheelMouseEvents:(BOOL)ignoresNonWheelMouseEvents 1597 { 1598 [_wkView _setIgnoresNonWheelMouseEvents:ignoresNonWheelMouseEvents]; 1599 } 1600 1591 1601 #endif 1592 1602 … … 2482 2492 } 2483 2493 2484 - (BOOL)_ignoresNonWheelMouseEvents2485 {2486 return [_wkView _ignoresNonWheelMouseEvents];2487 }2488 2489 - (void)_setIgnoresNonWheelMouseEvents:(BOOL)ignoresNonWheelMouseEvents2490 {2491 [_wkView _setIgnoresNonWheelMouseEvents:ignoresNonWheelMouseEvents];2492 }2493 2494 2494 - (CGFloat)_topContentInset 2495 2495 {
Note:
See TracChangeset
for help on using the changeset viewer.