Title: [127450] trunk/Source/WebKit/qt
Revision
127450
Author
o...@webkit.org
Date
2012-09-04 02:20:08 -0700 (Tue, 04 Sep 2012)

Log Message

[Qt] REGRESSION(r127321): It made 3 notification test timeout
https://bugs.webkit.org/show_bug.cgi?id=95638

Patch by Jon Lee <jon...@apple.com> on 2012-09-04
Reviewed by Csaba Osztrogonác.

Dispatch show event instead of display after r127321.

* WebCoreSupport/NotificationPresenterClientQt.cpp:
(WebCore::NotificationPresenterClientQt::sendDisplayEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (127449 => 127450)


--- trunk/Source/WebKit/qt/ChangeLog	2012-09-04 08:55:03 UTC (rev 127449)
+++ trunk/Source/WebKit/qt/ChangeLog	2012-09-04 09:20:08 UTC (rev 127450)
@@ -1,3 +1,15 @@
+2012-09-04  Jon Lee  <jon...@apple.com>
+
+        [Qt] REGRESSION(r127321): It made 3 notification test timeout
+        https://bugs.webkit.org/show_bug.cgi?id=95638
+
+        Reviewed by Csaba Osztrogonác.
+
+        Dispatch show event instead of display after r127321.
+
+        * WebCoreSupport/NotificationPresenterClientQt.cpp:
+        (WebCore::NotificationPresenterClientQt::sendDisplayEvent):
+
 2012-08-31  Simon Hausmann  <simon.hausm...@nokia.com>
 
         [Qt] Port convertValueToQVariant to use the JSC C API

Modified: trunk/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp (127449 => 127450)


--- trunk/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp	2012-09-04 08:55:03 UTC (rev 127449)
+++ trunk/Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp	2012-09-04 09:20:08 UTC (rev 127450)
@@ -384,7 +384,7 @@
 {
     Notification* notification = notificationForWrapper(wrapper);
     if (notification)
-        sendEvent(notification, "display");
+        sendEvent(notification, "show");
 }
 
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to