Title: [117827] trunk/Tools
Revision
117827
Author
[email protected]
Date
2012-05-21 16:15:35 -0700 (Mon, 21 May 2012)

Log Message

[WK2] Remove a useless #if on Tools/WebKitTestRunner/TestController.cpp
https://bugs.webkit.org/show_bug.cgi?id=87047

Patch by Hugo Parente Lima <[email protected]> on 2012-05-21
Reviewed by Alexis Menard.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (117826 => 117827)


--- trunk/Tools/ChangeLog	2012-05-21 23:00:46 UTC (rev 117826)
+++ trunk/Tools/ChangeLog	2012-05-21 23:15:35 UTC (rev 117827)
@@ -1,3 +1,13 @@
+2012-05-21  Hugo Parente Lima  <[email protected]>
+
+        [WK2] Remove a useless #if on Tools/WebKitTestRunner/TestController.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=87047
+
+        Reviewed by Alexis Menard.
+
+        * WebKitTestRunner/TestController.cpp:
+        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
+
 2012-05-21  Dirk Pranke  <[email protected]>
 
         webkitpy: clean up the TestExpectations constructor

Modified: trunk/Tools/WebKitTestRunner/TestController.cpp (117826 => 117827)


--- trunk/Tools/WebKitTestRunner/TestController.cpp	2012-05-21 23:00:46 UTC (rev 117826)
+++ trunk/Tools/WebKitTestRunner/TestController.cpp	2012-05-21 23:15:35 UTC (rev 117827)
@@ -618,7 +618,6 @@
             return 0;
         }
 
-#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(GTK)
         if (WKStringIsEqualToUTF8CString(subMessageName, "MouseDown") || WKStringIsEqualToUTF8CString(subMessageName, "MouseUp")) {
             WKRetainPtr<WKStringRef> buttonKey = adoptWK(WKStringCreateWithUTF8CString("Button"));
             unsigned button = static_cast<unsigned>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, buttonKey.get()))));
@@ -671,7 +670,6 @@
             m_eventSenderProxy->leapForward(time);
             return 0;
         }
-#endif
 
 #if ENABLE(TOUCH_EVENTS)
         if (WKStringIsEqualToUTF8CString(subMessageName, "AddTouchPoint")) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to