Changeset 137128 in webkit


Ignore:
Timestamp:
Dec 10, 2012 3:00:23 AM (11 years ago)
Author:
Martin Robinson
Message:

Fix the WebKit2 debug build

  • WebKitTestRunner/TestInvocation.cpp:

(WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Fix a typo of WKStringGetTypeID().

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r137127 r137128  
     12012-12-10  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Fix the WebKit2 debug build
     4
     5        * WebKitTestRunner/TestInvocation.cpp:
     6        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Fix a typo of WKStringGetTypeID().
     7
    182012-12-10  Martin Robinson  <mrobinson@igalia.com>
    29
  • trunk/Tools/WebKitTestRunner/TestInvocation.cpp

    r137127 r137128  
    353353
    354354    if (WKStringIsEqualToUTF8CString(messageName, "TextOutput")) {
    355         ASSERT(WKGetTypeID(messageBody) == WStringGetTypeID());
     355        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
    356356        WKStringRef textOutput = static_cast<WKStringRef>(messageBody);
    357357        m_textOutput.append(toWTFString(textOutput));
Note: See TracChangeset for help on using the changeset viewer.