summaryrefslogtreecommitdiffstats
path: root/src/core/web_engine_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/web_engine_context.h')
-rw-r--r--src/core/web_engine_context.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/web_engine_context.h b/src/core/web_engine_context.h
index 13554066b..8a10700f7 100644
--- a/src/core/web_engine_context.h
+++ b/src/core/web_engine_context.h
@@ -56,11 +56,14 @@ class ContentMainRunner;
class ContentMainDelegateQt;
class SurfaceFactoryQt;
+class WebEngineVisitedLinksManager;
class WebEngineContext : public base::RefCounted<WebEngineContext> {
public:
static scoped_refptr<WebEngineContext> current();
+ WebEngineVisitedLinksManager *visitedLinksManager();
+
private:
friend class base::RefCounted<WebEngineContext>;
WebEngineContext();
@@ -73,6 +76,7 @@ private:
#if defined(OS_ANDROID)
scoped_ptr<SurfaceFactoryQt> m_surfaceFactory;
#endif
+ scoped_ptr<WebEngineVisitedLinksManager> m_visitedLinksManager;
};
#endif // WEB_ENGINE_CONTEXT_H