Changeset 183439 in webkit


Ignore:
Timestamp:
Apr 27, 2015 5:22:26 PM (9 years ago)
Author:
ap@apple.com
Message:

More build fix.

  • WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm:

(-[AccessibilityNotificationHandler _notificationReceived:]):
Use -objectForKey:, not array subscript.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r183435 r183439  
     12015-04-27  Alexey Proskuryakov  <ap@apple.com>
     2
     3        More build fix.
     4
     5        * WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm:
     6        (-[AccessibilityNotificationHandler _notificationReceived:]):
     7        Use -objectForKey:, not array subscript.
     8
    192015-04-27  Alexey Proskuryakov  <ap@apple.com>
    210
  • trunk/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm

    r183368 r183439  
    126126        return;
    127127
    128     NSString *userInfoJSONValue = notification.userInfo[@"userInfo"];
     128    NSString *userInfoJSONValue = [[notification userInfo] objectForKey:@"userInfo"];
    129129
    130130    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(WTR::InjectedBundle::singleton().page()->page());
Note: See TracChangeset for help on using the changeset viewer.