Changeset 150096 in webkit


Ignore:
Timestamp:
May 14, 2013 6:20:12 PM (11 years ago)
Author:
Brent Fulgham
Message:

[Windows, others] Unreviewed build fix after r150090.

  • DumpRenderTree/TestRunner.cpp:

(getSecureEventInputIsEnabledCallback): IsSecureEventInputEnabled
doesn't exist on other platforms.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r150095 r150096  
     12013-05-14  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Windows, others] Unreviewed build fix after r150090.
     4
     5        * DumpRenderTree/TestRunner.cpp:
     6        (getSecureEventInputIsEnabledCallback): IsSecureEventInputEnabled
     7        doesn't exist on other platforms.
     8
    192013-05-14  Brent Fulgham  <bfulgham@webkit.org>
    210
  • trunk/Tools/DumpRenderTree/TestRunner.cpp

    r150090 r150096  
    18411841static JSValueRef getSecureEventInputIsEnabledCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
    18421842{
     1843#if PLATFORM(MAC)
    18431844    return JSValueMakeBoolean(context, IsSecureEventInputEnabled());
     1845#else
     1846    return JSValueMakeBoolean(context, false);
     1847#endif
    18441848}
    18451849
Note: See TracChangeset for help on using the changeset viewer.