Title: [176116] trunk/Source/WebKit2
Revision
176116
Author
[email protected]
Date
2014-11-13 22:57:52 -0800 (Thu, 13 Nov 2014)

Log 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:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (176115 => 176116)


--- trunk/Source/WebKit2/ChangeLog	2014-11-14 04:26:45 UTC (rev 176115)
+++ trunk/Source/WebKit2/ChangeLog	2014-11-14 06:57:52 UTC (rev 176116)
@@ -1,3 +1,16 @@
+2014-11-13  Dan Bernstein  <[email protected]>
+
+        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:]):
+
 2014-11-13  Myles C. Maxfield  <[email protected]>
 
         Move FontMac and FontCacheMac off of WKSI

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (176115 => 176116)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2014-11-14 04:26:45 UTC (rev 176115)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2014-11-14 06:57:52 UTC (rev 176116)
@@ -1588,6 +1588,16 @@
     [_wkView setMagnification:magnification centeredAtPoint:NSPointFromCGPoint(point)];
 }
 
+- (BOOL)_ignoresNonWheelMouseEvents
+{
+    return [_wkView _ignoresNonWheelMouseEvents];
+}
+
+- (void)_setIgnoresNonWheelMouseEvents:(BOOL)ignoresNonWheelMouseEvents
+{
+    [_wkView _setIgnoresNonWheelMouseEvents:ignoresNonWheelMouseEvents];
+}
+
 #endif
 
 @end
@@ -2481,16 +2491,6 @@
     [_wkView _setTopContentInset:contentInset];
 }
 
-- (BOOL)_ignoresNonWheelMouseEvents
-{
-    return [_wkView _ignoresNonWheelMouseEvents];
-}
-
-- (void)_setIgnoresNonWheelMouseEvents:(BOOL)ignoresNonWheelMouseEvents
-{
-    [_wkView _setIgnoresNonWheelMouseEvents:ignoresNonWheelMouseEvents];
-}
-
 - (CGFloat)_topContentInset
 {
     return [_wkView _topContentInset];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to