Changeset 183999 in webkit
- Timestamp:
- May 8, 2015, 11:20:59 AM (11 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/mac/WKImmediateActionController.mm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r183992 r183999 1 2015-05-08 Beth Dakin <bdakin@apple.com> 2 3 Fix performance tests after r183954 4 https://bugs.webkit.org/show_bug.cgi?id=144805 5 6 Reviewed by Alexey Proskuryakov. 7 8 Web* is traditionally a WK1 prefix, so use the WK2 prefix instead in WK2 so that 9 we don’t have two classes with the same name in the two projects. 10 * UIProcess/mac/WKImmediateActionController.mm: 11 (-[WKImmediateActionController _defaultAnimationController]): 12 1 13 2015-05-08 Carlos Garcia Campos <cgarcia@igalia.com> 2 14 -
trunk/Source/WebKit2/UIProcess/mac/WKImmediateActionController.mm
r183978 r183999 54 54 @end 55 55 56 @interface W ebAnimationController : NSObject <NSImmediateActionAnimationController> {56 @interface WKAnimationController : NSObject <NSImmediateActionAnimationController> { 57 57 } 58 58 @end 59 59 60 @implementation W ebAnimationController60 @implementation WKAnimationController 61 61 @end 62 62 … … 265 265 { 266 266 if (_contentPreventsDefault) { 267 RetainPtr<W ebAnimationController> dummyController = [[WebAnimationController alloc] init];267 RetainPtr<WKAnimationController> dummyController = [[WKAnimationController alloc] init]; 268 268 return dummyController.get(); 269 269 }
Note:
See TracChangeset
for help on using the changeset viewer.