Title: [98566] trunk/Source/WebKit/chromium
Revision
98566
Author
commit-qu...@webkit.org
Date
2011-10-27 07:03:32 -0700 (Thu, 27 Oct 2011)

Log Message

Chromium ui_tests WorkerTest.WorkerMessagePort[GC] were broken by https://bugs.webkit.org/attachment.cgi?id=112342
https://bugs.webkit.org/show_bug.cgi?id=70953

Patch by Dave Michael <dmich...@chromium.org> on 2011-10-27
Reviewed by David Levin.

* src/PlatformMessagePortChannel.cpp:
(WebCore::PlatformMessagePortChannel::hasPendingActivity):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (98565 => 98566)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-27 14:00:48 UTC (rev 98565)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-27 14:03:32 UTC (rev 98566)
@@ -1,3 +1,13 @@
+2011-10-27  Dave Michael  <dmich...@chromium.org>
+
+        Chromium ui_tests WorkerTest.WorkerMessagePort[GC] were broken by https://bugs.webkit.org/attachment.cgi?id=112342
+        https://bugs.webkit.org/show_bug.cgi?id=70953
+
+        Reviewed by David Levin.
+
+        * src/PlatformMessagePortChannel.cpp:
+        (WebCore::PlatformMessagePortChannel::hasPendingActivity):
+
 2011-10-27  Aaron Colwell  <acolw...@chromium.org>
 
         Enable MEDIA_SOURCE feature for Chromium

Modified: trunk/Source/WebKit/chromium/src/PlatformMessagePortChannel.cpp (98565 => 98566)


--- trunk/Source/WebKit/chromium/src/PlatformMessagePortChannel.cpp	2011-10-27 14:00:48 UTC (rev 98565)
+++ trunk/Source/WebKit/chromium/src/PlatformMessagePortChannel.cpp	2011-10-27 14:03:32 UTC (rev 98566)
@@ -236,7 +236,7 @@
 bool PlatformMessagePortChannel::hasPendingActivity()
 {
     MutexLocker lock(m_mutex);
-    return m_localPort && m_localPort->hasPendingActivity();
+    return m_localPort;
 }
 
 void PlatformMessagePortChannel::setEntangledChannel(PassRefPtr<PlatformMessagePortChannel> remote)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to