Backed out changeset 96aefa302688 (bug 1065881) for breaking content process leak checking.

CLOSED TREE
This commit is contained in:
Ryan VanderMeulen 2014-10-16 12:23:56 -04:00
parent 8f43c9c71d
commit f9d39c28db
2 changed files with 2 additions and 1 deletions

View File

@ -460,6 +460,7 @@ skip-if = true # bug 1021673
[test_standalone.html]
[test_streams_autoplay.html]
[test_streams_element_capture.html]
skip-if = e10s && os == 'win' # Bug 1065881 - Crash on child process shutdown in ShadowLayerForwarder::InWorkerThread
[test_streams_element_capture_createObjectURL.html]
[test_streams_element_capture_playback.html]
[test_streams_element_capture_reset.html]

View File

@ -494,7 +494,7 @@ ShadowLayerForwarder::RemoveTextureFromCompositableAsync(AsyncTransactionTracker
bool
ShadowLayerForwarder::InWorkerThread()
{
return MessageLoop::current() && (GetMessageLoop()->id() == MessageLoop::current()->id());
return GetMessageLoop()->id() == MessageLoop::current()->id();
}
static void RemoveTextureWorker(TextureClient* aTexture, ReentrantMonitor* aBarrier, bool* aDone)