summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2013-06-11 15:44:26 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-12-05 17:02:58 +0100
commit8eb467bd907194c80ae21dd81585fe0968da2514 (patch)
treedb0e1496d0565203e2d72036771e0e05bdb5e3e7
parent24eb03cbe559956ac327221ed269e21ab6a43ceb (diff)
downloadqtwebengine-chromium-8eb467bd907194c80ae21dd81585fe0968da2514.tar.gz
<chromium> Add WebEngineContext to RunLoop's friends.
Change-Id: I2bb2600637ac5a3473273789cd61c257d682b702 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com> Reviewed-by: Jocelyn Turcotte (Woboq GmbH) <jturcotte@woboq.com> Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
-rw-r--r--chromium/base/run_loop.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chromium/base/run_loop.h b/chromium/base/run_loop.h
index 7cf72dbf01d..ac277ba67bb 100644
--- a/chromium/base/run_loop.h
+++ b/chromium/base/run_loop.h
@@ -18,6 +18,10 @@
#include "base/threading/thread_checker.h"
#include "build/build_config.h"
+namespace QtWebEngineCore {
+class WebEngineContext;
+}
+
namespace base {
#if defined(OS_ANDROID)
class MessagePumpForUI;
@@ -275,6 +279,7 @@ class BASE_EXPORT RunLoop {
};
private:
+ friend class QtWebEngineCore::WebEngineContext;
#if defined(OS_ANDROID)
// Android doesn't support the blocking RunLoop::Run, so it calls
// BeforeRun and AfterRun directly.