summaryrefslogtreecommitdiffstats
path: root/src/core/browser_context_qt.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-02-23 15:24:46 +0100
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-02-23 15:59:06 +0000
commit53944320a5e82943c3dfe11e74890f4928a15a47 (patch)
tree95e295c2cfe4d4de1990848e113236517216d1ca /src/core/browser_context_qt.h
parentf0ae944eaed5e551fd680bd0126f0f500faab432 (diff)
Implement SSLHostStateDelegate
This class was introduced to track accepted certificate errors. Our lack of implementation caused a regression in certificate error handling. Task-number: QTBUG-51319 Change-Id: Idf3314fd17a5f9cb13a4513a3ccdb40954519c0d Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'src/core/browser_context_qt.h')
-rw-r--r--src/core/browser_context_qt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/browser_context_qt.h b/src/core/browser_context_qt.h
index 9deb42b56..ba6e1dce1 100644
--- a/src/core/browser_context_qt.h
+++ b/src/core/browser_context_qt.h
@@ -48,6 +48,7 @@ namespace QtWebEngineCore {
class BrowserContextAdapter;
class PermissionManagerQt;
+class SSLHostStateDelegateQt;
class URLRequestContextGetterQt;
class BrowserContextQt : public content::BrowserContext
@@ -84,6 +85,7 @@ private:
scoped_ptr<content::ResourceContext> resourceContext;
scoped_refptr<URLRequestContextGetterQt> url_request_getter_;
scoped_ptr<PermissionManagerQt> permissionManager;
+ scoped_ptr<SSLHostStateDelegateQt> sslHostStateDelegate;
BrowserContextAdapter *m_adapter;
friend class BrowserContextAdapter;