Title: [184018] trunk/Tools
- Revision
- 184018
- Author
- [email protected]
- Date
- 2015-05-08 15:11:30 -0700 (Fri, 08 May 2015)
Log Message
Build fix.
Reviewed by Dan Bernstein.
* DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h:
* DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
(-[DumpRenderTreeDraggingInfo springLoadingHighlight]):
(-[DumpRenderTreeDraggingInfo resetSpringLoading]):
* WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h:
* WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm:
(-[WebKitTestRunnerDraggingInfo springLoadingHighlight]):
(-[WebKitTestRunnerDraggingInfo resetSpringLoading]):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (184017 => 184018)
--- trunk/Tools/ChangeLog 2015-05-08 22:06:44 UTC (rev 184017)
+++ trunk/Tools/ChangeLog 2015-05-08 22:11:30 UTC (rev 184018)
@@ -1,3 +1,18 @@
+2015-05-08 Alexey Proskuryakov <[email protected]>
+
+ Build fix.
+
+ Reviewed by Dan Bernstein.
+
+ * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h:
+ * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
+ (-[DumpRenderTreeDraggingInfo springLoadingHighlight]):
+ (-[DumpRenderTreeDraggingInfo resetSpringLoading]):
+ * WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h:
+ * WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm:
+ (-[WebKitTestRunnerDraggingInfo springLoadingHighlight]):
+ (-[WebKitTestRunnerDraggingInfo resetSpringLoading]):
+
2015-05-08 Martin Robinson <[email protected]>
[GTK] Some tests fail because they do not assume the popup menu captures click events
Modified: trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h (184017 => 184018)
--- trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h 2015-05-08 22:06:44 UTC (rev 184017)
+++ trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h 2015-05-08 22:11:30 UTC (rev 184018)
@@ -51,6 +51,15 @@
- (void)slideDraggedImageTo:(NSPoint)screenPoint;
- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination;
+
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wincompatible-property-type"
+// FIXME (<rdar://problem/20880213>): Replace NSInteger with an actual type when we can.
+@property (readonly) NSInteger springLoadingHighlight;
+#pragma clang diagnostic pop
+- (void)resetSpringLoading;
+#endif
@end
#endif
Modified: trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm (184017 => 184018)
--- trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm 2015-05-08 22:06:44 UTC (rev 184017)
+++ trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm 2015-05-08 22:11:30 UTC (rev 184018)
@@ -142,6 +142,17 @@
// Ignored.
}
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
+-(NSInteger)springLoadingHighlight
+{
+ return 0;
+}
+
+- (void)resetSpringLoading
+{
+}
+#endif
+
@end
#endif // !PLATFORM(IOS)
Modified: trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h (184017 => 184018)
--- trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h 2015-05-08 22:06:44 UTC (rev 184017)
+++ trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h 2015-05-08 22:11:30 UTC (rev 184018)
@@ -44,4 +44,13 @@
- (void)slideDraggedImageTo:(NSPoint)screenPoint;
- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination;
+
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wincompatible-property-type"
+// FIXME (<rdar://problem/20880213>): Replace NSInteger with an actual type when we can.
+@property (readonly) NSInteger springLoadingHighlight;
+#pragma clang diagnostic pop
+- (void)resetSpringLoading;
+#endif
@end
Modified: trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm (184017 => 184018)
--- trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm 2015-05-08 22:06:44 UTC (rev 184017)
+++ trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm 2015-05-08 22:11:30 UTC (rev 184018)
@@ -146,4 +146,15 @@
// Ignored.
}
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
+-(NSInteger)springLoadingHighlight
+{
+ return 0;
+}
+
+- (void)resetSpringLoading
+{
+}
+#endif
+
@end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes