Title: [150096] trunk/Tools
Revision
150096
Author
bfulg...@apple.com
Date
2013-05-14 18:20:12 -0700 (Tue, 14 May 2013)

Log Message

[Windows, others] Unreviewed build fix after r150090.

* DumpRenderTree/TestRunner.cpp:
(getSecureEventInputIsEnabledCallback): IsSecureEventInputEnabled
doesn't exist on other platforms.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (150095 => 150096)


--- trunk/Tools/ChangeLog	2013-05-15 01:00:26 UTC (rev 150095)
+++ trunk/Tools/ChangeLog	2013-05-15 01:20:12 UTC (rev 150096)
@@ -1,3 +1,11 @@
+2013-05-14  Brent Fulgham  <bfulg...@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  <bfulg...@webkit.org>
 
         [Windows] Expunge pthreads2VC.dll from DumpRenderTree Project

Modified: trunk/Tools/DumpRenderTree/TestRunner.cpp (150095 => 150096)


--- trunk/Tools/DumpRenderTree/TestRunner.cpp	2013-05-15 01:00:26 UTC (rev 150095)
+++ trunk/Tools/DumpRenderTree/TestRunner.cpp	2013-05-15 01:20:12 UTC (rev 150096)
@@ -1840,7 +1840,11 @@
 
 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)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to