⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 183999 in webkit


Ignore:
Timestamp:
May 8, 2015, 11:20:59 AM (11 years ago)
Author:
Beth Dakin
Message:

Fix performance tests after r183954
https://bugs.webkit.org/show_bug.cgi?id=144805

Reviewed by Alexey Proskuryakov.

Web* is traditionally a WK1 prefix, so use the WK2 prefix instead in WK2 so that
we don’t have two classes with the same name in the two projects.

  • UIProcess/mac/WKImmediateActionController.mm:

(-[WKImmediateActionController _defaultAnimationController]):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r183992 r183999  
     12015-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
    1132015-05-08  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebKit2/UIProcess/mac/WKImmediateActionController.mm

    r183978 r183999  
    5454@end
    5555
    56 @interface WebAnimationController : NSObject <NSImmediateActionAnimationController> {
     56@interface WKAnimationController : NSObject <NSImmediateActionAnimationController> {
    5757}
    5858@end
    5959
    60 @implementation WebAnimationController
     60@implementation WKAnimationController
    6161@end
    6262
     
    265265{
    266266    if (_contentPreventsDefault) {
    267         RetainPtr<WebAnimationController> dummyController = [[WebAnimationController alloc] init];
     267        RetainPtr<WKAnimationController> dummyController = [[WKAnimationController alloc] init];
    268268        return dummyController.get();
    269269    }
Note: See TracChangeset for help on using the changeset viewer.