Step 1 at making Gears run in the renderer process (enabled by switch
"--gears-in-renderer"). Requires some changes to gears to work. Most things
work if you disable the sandbox. One major hole is that update tasks don't
report status to the appropriate renderer.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@954 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/renderer/render_thread.h b/chrome/renderer/render_thread.h
index ca022671..9463a20 100644
--- a/chrome/renderer/render_thread.h
+++ b/chrome/renderer/render_thread.h
@@ -43,6 +43,7 @@
class VisitedLinkSlave;
struct WebPreferences;
class RenderDnsMaster;
+class NotificationService;
// The RenderThread class represents a background thread where RenderView
// instances live. The RenderThread supports an API that is used by its
@@ -137,6 +138,8 @@
scoped_ptr<ScopedRunnableMethodFactory<RenderThread> > cache_stats_factory_;
+ scoped_ptr<NotificationService> notification_service_;
+
int in_send_;
DISALLOW_EVIL_CONSTRUCTORS(RenderThread);