summaryrefslogtreecommitdiffstats
path: root/src/core/content_main_delegate_qt.h
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2018-10-12 11:58:16 +0200
committerMichal Klocek <michal.klocek@qt.io>2018-10-18 07:48:55 +0000
commit5be48d4238465b4efd36ed4bbb96ec407be9f217 (patch)
tree3d41907c39b0cb13861af01ee4d2385414a1b47d /src/core/content_main_delegate_qt.h
parent267dd7fa09855bd0b8dedf7edcb126e034d8e1f8 (diff)
Add proxy resolver service
This adds proxy resolver service as a part of content utility process and pulls in the corresponding change in Chromium. Fixes: QTBUG-69281 Change-Id: Icb2b67e1e506a5b511531322a8c13d7df0e11f9f Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/core/content_main_delegate_qt.h')
-rw-r--r--src/core/content_main_delegate_qt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/content_main_delegate_qt.h b/src/core/content_main_delegate_qt.h
index 407687c81..c06afb0fb 100644
--- a/src/core/content_main_delegate_qt.h
+++ b/src/core/content_main_delegate_qt.h
@@ -43,6 +43,7 @@
#include "content/public/app/content_main_delegate.h"
#include "content_browser_client_qt.h"
+#include "content_utility_client_qt.h"
namespace QtWebEngineCore {
@@ -56,11 +57,12 @@ public:
content::ContentBrowserClient* CreateContentBrowserClient() override;
content::ContentRendererClient* CreateContentRendererClient() override;
-
+ content::ContentUtilityClient* CreateContentUtilityClient() override;
bool BasicStartupComplete(int* /*exit_code*/) override;
private:
std::unique_ptr<ContentBrowserClientQt> m_browserClient;
+ std::unique_ptr<ContentUtilityClientQt> m_utilityClient;
};
} // namespace QtWebEngineCore