summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-05-06 17:49:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-07 18:54:59 +0200
commitf5ad05b1a5c878a943e82109f60526c8b909a1a7 (patch)
tree1a5c83bfcd40f097ca7d91cbda092f7c0e73a04c
parent8a45662b7eb920b4070d1c3f62684ab37ae73adb (diff)
downloadqtwebengine-f5ad05b1a5c878a943e82109f60526c8b909a1a7.tar.gz
Fix an assertion in MediaCaptureDevicesDispatcher
Change-Id: I169f142e867ed1bda52dff7f5f66fb88ed802c01 Reviewed-by: Andras Becsi <andras.becsi@digia.com>
-rw-r--r--src/core/web_engine_context.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/web_engine_context.cpp b/src/core/web_engine_context.cpp
index 2d2a8463f..d2550e48d 100644
--- a/src/core/web_engine_context.cpp
+++ b/src/core/web_engine_context.cpp
@@ -73,6 +73,7 @@
#include "content_client_qt.h"
#include "content_main_delegate_qt.h"
#include "gl_context_qt.h"
+#include "media_capture_devices_dispatcher.h"
#include "type_conversion.h"
#include "web_engine_library_info.h"
#include <QGuiApplication>
@@ -183,4 +184,9 @@ WebEngineContext::WebEngineContext()
// Once the MessageLoop has been created, attach a top-level RunLoop.
m_runLoop.reset(new base::RunLoop);
m_runLoop->BeforeRun();
+
+ // Force the initialization of MediaCaptureDevicesDispatcher on the UI
+ // thread to avoid a thread check assertion in its constructor when it
+ // first gets referenced on the IO thread.
+ MediaCaptureDevicesDispatcher::GetInstance();
}