summaryrefslogtreecommitdiffstats
path: root/src/core/web_engine_context.h
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-04-01 14:46:37 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-08 14:00:13 +0200
commit798134400a22f878b6cfd186b3792ecedb4d9123 (patch)
tree5ff358f5e894fa60c19c1d29067a4c9618432307 /src/core/web_engine_context.h
parent96425960f9d57387c33e3ba50785aaa81255bc98 (diff)
Get rid of the BackingStore rendering path
Now that the widgets view is also using the delegated renderer, there are no supported configuration that use the BackingStore rendering path, itself on the way of deprecation in Chromium. Change-Id: I4ab889f6a7c65e8447c259faf2c7a98b88c1acf5 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/core/web_engine_context.h')
-rw-r--r--src/core/web_engine_context.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/web_engine_context.h b/src/core/web_engine_context.h
index cdd3e34b2..e0624afa1 100644
--- a/src/core/web_engine_context.h
+++ b/src/core/web_engine_context.h
@@ -42,8 +42,6 @@
#ifndef WEB_ENGINE_CONTEXT_H
#define WEB_ENGINE_CONTEXT_H
-#include "web_contents_adapter_client.h"
-
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
@@ -60,13 +58,11 @@ class ContentMainDelegateQt;
class WebEngineContext : public base::RefCounted<WebEngineContext> {
public:
- static scoped_refptr<WebEngineContext> currentOrCreate(WebContentsAdapterClient::RenderingMode renderingMode);
static scoped_refptr<WebEngineContext> current();
- WebContentsAdapterClient::RenderingMode renderingMode();
private:
friend class base::RefCounted<WebEngineContext>;
- WebEngineContext(WebContentsAdapterClient::RenderingMode renderingMode);
+ WebEngineContext();
~WebEngineContext();
scoped_ptr<base::RunLoop> m_runLoop;