Changeset 176116 in webkit


Ignore:
Timestamp:
Nov 13, 2014 10:57:52 PM (9 years ago)
Author:
mitz@apple.com
Message:

Two WKWebView internal methods are implemented in a category
https://bugs.webkit.org/show_bug.cgi?id=138728

Reviewed by Tim HOrton.

Moved the implementations from the category to the class.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _ignoresNonWheelMouseEvents]):
(-[WKWebView _setIgnoresNonWheelMouseEvents:]):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r176112 r176116  
     12014-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
    1142014-11-13  Myles C. Maxfield  <mmaxfield@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm

    r176097 r176116  
    15891589}
    15901590
     1591- (BOOL)_ignoresNonWheelMouseEvents
     1592{
     1593    return [_wkView _ignoresNonWheelMouseEvents];
     1594}
     1595
     1596- (void)_setIgnoresNonWheelMouseEvents:(BOOL)ignoresNonWheelMouseEvents
     1597{
     1598    [_wkView _setIgnoresNonWheelMouseEvents:ignoresNonWheelMouseEvents];
     1599}
     1600
    15911601#endif
    15921602
     
    24822492}
    24832493
    2484 - (BOOL)_ignoresNonWheelMouseEvents
    2485 {
    2486     return [_wkView _ignoresNonWheelMouseEvents];
    2487 }
    2488 
    2489 - (void)_setIgnoresNonWheelMouseEvents:(BOOL)ignoresNonWheelMouseEvents
    2490 {
    2491     [_wkView _setIgnoresNonWheelMouseEvents:ignoresNonWheelMouseEvents];
    2492 }
    2493 
    24942494- (CGFloat)_topContentInset
    24952495{
Note: See TracChangeset for help on using the changeset viewer.