Title: [150098] trunk/Tools
Revision
150098
Author
commit-qu...@webkit.org
Date
2013-05-14 19:18:47 -0700 (Tue, 14 May 2013)

Log Message

Fix build after r150090.
https://bugs.webkit.org/show_bug.cgi?id=116129

Unreviewed build fix after r150090.

Patch by Jaehun Lim <ljaehun....@samsung.com> on 2013-05-14

* WebKitTestRunner/TestInvocation.cpp:
(WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (150097 => 150098)


--- trunk/Tools/ChangeLog	2013-05-15 02:17:55 UTC (rev 150097)
+++ trunk/Tools/ChangeLog	2013-05-15 02:18:47 UTC (rev 150098)
@@ -1,3 +1,13 @@
+2013-05-14  Jaehun Lim  <ljaehun....@samsung.com>
+
+        Fix build after r150090.
+        https://bugs.webkit.org/show_bug.cgi?id=116129
+
+        Unreviewed build fix after r150090.
+
+        * WebKitTestRunner/TestInvocation.cpp:
+        (WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):
+
 2013-05-14  Brent Fulgham  <bfulg...@apple.com>
 
         [Windows, others] Unreviewed build fix after r150090.

Modified: trunk/Tools/WebKitTestRunner/TestInvocation.cpp (150097 => 150098)


--- trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2013-05-15 02:17:55 UTC (rev 150097)
+++ trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2013-05-15 02:18:47 UTC (rev 150098)
@@ -668,7 +668,7 @@
 #if PLATFORM(MAC)
         WKRetainPtr<WKBooleanRef> result(AdoptWK, WKBooleanCreate(IsSecureEventInputEnabled()));
 #else
-        WKRetainPtr<WKBooleanRef> result(AdoptWK, WKBooleanCreate(false);
+        WKRetainPtr<WKBooleanRef> result(AdoptWK, WKBooleanCreate(false));
 #endif
         return result;
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to