Title: [184861] trunk/Tools
Revision
184861
Author
ander...@apple.com
Date
2015-05-26 10:35:15 -0700 (Tue, 26 May 2015)

Log Message

Fix build.

* WebKitTestRunner/mac/EventSenderProxy.mm:
(WTR::EventSenderProxy::mouseForceDown):
(WTR::EventSenderProxy::mouseForceUp):
(WTR::EventSenderProxy::mouseForceChanged):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (184860 => 184861)


--- trunk/Tools/ChangeLog	2015-05-26 17:28:32 UTC (rev 184860)
+++ trunk/Tools/ChangeLog	2015-05-26 17:35:15 UTC (rev 184861)
@@ -1,3 +1,12 @@
+2015-05-26  Anders Carlsson  <ander...@apple.com>
+
+        Fix build.
+
+        * WebKitTestRunner/mac/EventSenderProxy.mm:
+        (WTR::EventSenderProxy::mouseForceDown):
+        (WTR::EventSenderProxy::mouseForceUp):
+        (WTR::EventSenderProxy::mouseForceChanged):
+
 2015-05-26  Alexey Proskuryakov  <a...@apple.com>
 
         build.webkit.org/dashboard: Don't list test steps in BuildbotIteration twice

Modified: trunk/Tools/WebKitTestRunner/mac/EventSenderProxy.mm (184860 => 184861)


--- trunk/Tools/WebKitTestRunner/mac/EventSenderProxy.mm	2015-05-26 17:28:32 UTC (rev 184860)
+++ trunk/Tools/WebKitTestRunner/mac/EventSenderProxy.mm	2015-05-26 17:35:15 UTC (rev 184861)
@@ -309,8 +309,11 @@
     [targetView pressureChangeWithEvent:secondEvent];
 
     [NSApp _setCurrentEvent:nil];
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wnonnull"
     // WKView caches the most recent pressure event, so send it a nil event to clear the cache.
     [targetView pressureChangeWithEvent:nil];
+#pragma clang diagnostic pop
 
     [firstEvent release];
     [secondEvent release];
@@ -345,8 +348,12 @@
     [targetView pressureChangeWithEvent:secondEvent];
 
     [NSApp _setCurrentEvent:nil];
-    // WKView caches the most recent pressure event, so send it a nil event to clear the cache.
+
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wnonnull"
+// WKView caches the most recent pressure event, so send it a nil event to clear the cache.
     [targetView pressureChangeWithEvent:nil];
+#pragma clang diagnostic pop
 
     [firstEvent release];
     [secondEvent release];
@@ -369,8 +376,11 @@
     [targetView pressureChangeWithEvent:event];
     [NSApp _setCurrentEvent:nil];
 
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wnonnull"
     // WKView caches the most recent pressure event, so send it a nil event to clear the cache.
     [targetView pressureChangeWithEvent:nil];
+#pragma clang diagnostic pop
 
     [event release];
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to