* DumpRenderTree/TestRunner.cpp:
(getSecureEventInputIsEnabledCallback): IsSecureEventInputEnabled
doesn't exist on other platforms.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@150096
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-05-14 Brent Fulgham <bfulgham@apple.com>
+
+ [Windows, others] Unreviewed build fix after r150090.
+
+ * DumpRenderTree/TestRunner.cpp:
+ (getSecureEventInputIsEnabledCallback): IsSecureEventInputEnabled
+ doesn't exist on other platforms.
+
2013-05-14 Brent Fulgham <bfulgham@webkit.org>
[Windows] Expunge pthreads2VC.dll from DumpRenderTree Project
static JSValueRef getSecureEventInputIsEnabledCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
{
+#if PLATFORM(MAC)
return JSValueMakeBoolean(context, IsSecureEventInputEnabled());
+#else
+ return JSValueMakeBoolean(context, false);
+#endif
}
static JSValueRef getTitleTextDirectionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)