summaryrefslogtreecommitdiffstats
path: root/src/core/browser_context_qt.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@digia.com>2014-09-02 15:03:16 +0200
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2014-11-06 16:39:00 +0100
commitfca9015175950b04bafb9b3af7d4e693eb0243d9 (patch)
tree3eaad9f6eb131d901da6aa32df15b984baff731c /src/core/browser_context_qt.h
parenta5a680f93ddd2488c8eb494a17ff18a0932e8cec (diff)
Unglobalize browserContext
This patch makes it possible to have more than one BrowserContext, for instance for off-the-record browsering but also to enable any other configuration on browser context level. This will make it possible to add page-groups settings and API for settingsthat can only be done on BrowserContext level. This patch does not expose any new API. Change-Id: I0a0e194449cfb5a096a4ac6e2f2b3882b6b4cfa2 Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'src/core/browser_context_qt.h')
-rw-r--r--src/core/browser_context_qt.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/browser_context_qt.h b/src/core/browser_context_qt.h
index 8c7e707a8..4e18c1a4a 100644
--- a/src/core/browser_context_qt.h
+++ b/src/core/browser_context_qt.h
@@ -43,10 +43,12 @@
#include "net/url_request/url_request_context.h"
#include "download_manager_delegate_qt.h"
+class BrowserContextAdapter;
+
class BrowserContextQt : public content::BrowserContext
{
public:
- explicit BrowserContextQt();
+ explicit BrowserContextQt(BrowserContextAdapter *);
virtual ~BrowserContextQt();
@@ -69,6 +71,7 @@ private:
scoped_ptr<content::ResourceContext> resourceContext;
scoped_refptr<net::URLRequestContextGetter> url_request_getter_;
scoped_ptr<DownloadManagerDelegateQt> downloadManagerDelegate;
+ BrowserContextAdapter *m_adapter;
DISALLOW_COPY_AND_ASSIGN(BrowserContextQt);
};