Changeset 184018 in webkit
- Timestamp:
- May 8, 2015, 3:11:30 PM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h (modified) (1 diff)
-
DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm (modified) (1 diff)
-
WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h (modified) (1 diff)
-
WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r184015 r184018 1 2015-05-08 Alexey Proskuryakov <ap@apple.com> 2 3 Build fix. 4 5 Reviewed by Dan Bernstein. 6 7 * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h: 8 * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm: 9 (-[DumpRenderTreeDraggingInfo springLoadingHighlight]): 10 (-[DumpRenderTreeDraggingInfo resetSpringLoading]): 11 * WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h: 12 * WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm: 13 (-[WebKitTestRunnerDraggingInfo springLoadingHighlight]): 14 (-[WebKitTestRunnerDraggingInfo resetSpringLoading]): 15 1 16 2015-05-08 Martin Robinson <mrobinson@igalia.com> 2 17 -
trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h
r165676 r184018 52 52 - (void)slideDraggedImageTo:(NSPoint)screenPoint; 53 53 - (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination; 54 55 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100 56 #pragma clang diagnostic push 57 #pragma clang diagnostic ignored "-Wincompatible-property-type" 58 // FIXME (<rdar://problem/20880213>): Replace NSInteger with an actual type when we can. 59 @property (readonly) NSInteger springLoadingHighlight; 60 #pragma clang diagnostic pop 61 - (void)resetSpringLoading; 62 #endif 54 63 @end 55 64 -
trunk/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm
r165676 r184018 143 143 } 144 144 145 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100 146 -(NSInteger)springLoadingHighlight 147 { 148 return 0; 149 } 150 151 - (void)resetSpringLoading 152 { 153 } 154 #endif 155 145 156 @end 146 157 -
trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.h
r154949 r184018 45 45 - (void)slideDraggedImageTo:(NSPoint)screenPoint; 46 46 - (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination; 47 48 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100 49 #pragma clang diagnostic push 50 #pragma clang diagnostic ignored "-Wincompatible-property-type" 51 // FIXME (<rdar://problem/20880213>): Replace NSInteger with an actual type when we can. 52 @property (readonly) NSInteger springLoadingHighlight; 53 #pragma clang diagnostic pop 54 - (void)resetSpringLoading; 55 #endif 47 56 @end -
trunk/Tools/WebKitTestRunner/mac/WebKitTestRunnerDraggingInfo.mm
r179409 r184018 147 147 } 148 148 149 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100 150 -(NSInteger)springLoadingHighlight 151 { 152 return 0; 153 } 154 155 - (void)resetSpringLoading 156 { 157 } 158 #endif 159 149 160 @end
Note:
See TracChangeset
for help on using the changeset viewer.