diff options
Diffstat (limited to 'chrome/renderer/render_thread.h')
-rw-r--r-- | chrome/renderer/render_thread.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/renderer/render_thread.h b/chrome/renderer/render_thread.h index a23776e..cfc3d9a 100644 --- a/chrome/renderer/render_thread.h +++ b/chrome/renderer/render_thread.h @@ -24,6 +24,10 @@ class VisitedLinkSlave; struct ModalDialogEvent; struct WebPreferences; +namespace webkit_glue { +class WebKitClientImpl; +} + // The RenderThreadBase is the minimal interface that a RenderView/Widget // expects from a render thread. The interface basically abstracts a way to send // and receive messages. @@ -138,6 +142,8 @@ class RenderThread : public RenderThreadBase, scoped_ptr<NotificationService> notification_service_; + scoped_ptr<webkit_glue::WebKitClientImpl> webkit_client_impl_; + DISALLOW_COPY_AND_ASSIGN(RenderThread); }; |