diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-12 01:06:19 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-12 01:06:19 +0000 |
commit | 16095bf0140c955960f2a4a99cc344d2b519b064 (patch) | |
tree | 2f78023b02e97174b4d05895c6256212e160ed57 /content/browser/renderer_host/render_process_host.h | |
parent | f0b739902f5235c47637c3ef3a0554189c7e7fbc (diff) | |
download | chromium_src-16095bf0140c955960f2a4a99cc344d2b519b064.zip chromium_src-16095bf0140c955960f2a4a99cc344d2b519b064.tar.gz chromium_src-16095bf0140c955960f2a4a99cc344d2b519b064.tar.bz2 |
Revert "Re-land r84928: Move ExtensionFunctionDispatcher to"
Breaks installation on webstore.
This reverts commit 73ad030f2c57a444b81351b2a1cd8546a6dbddc8.
TBR=mpcomplete@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85084 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/render_process_host.h')
-rw-r--r-- | content/browser/renderer_host/render_process_host.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/content/browser/renderer_host/render_process_host.h b/content/browser/renderer_host/render_process_host.h index 9d3b8fc..b43fbe2 100644 --- a/content/browser/renderer_host/render_process_host.h +++ b/content/browser/renderer_host/render_process_host.h @@ -88,9 +88,6 @@ class RenderProcessHost : public IPC::Channel::Sender, sudden_termination_allowed_ = enabled; } - bool is_extension_process() const { return is_extension_process_; } - void mark_is_extension_process() { is_extension_process_ = true; } - // Used for refcounting, each holder of this object must Attach and Release // just like it would for a COM object. This object should be allocated on // the heap; when no listeners own it any more, it will delete itself. @@ -166,7 +163,8 @@ class RenderProcessHost : public IPC::Channel::Sender, // be called once before the object can be used, but can be called after // that with no effect. Therefore, if the caller isn't sure about whether // the process has been created, it should just call Init(). - virtual bool Init(bool is_accessibility_enabled) = 0; + virtual bool Init( + bool is_accessibility_enabled, bool is_extensions_process) = 0; // Gets the next available routing id. virtual int GetNextRoutingID() = 0; @@ -284,10 +282,6 @@ class RenderProcessHost : public IPC::Channel::Sender, // True if we've posted a DeleteTask and will be deleted soon. bool deleting_soon_; - // True iff this process is being used as an extension process. Not valid - // when running in single-process mode. - bool is_extension_process_; - // The count of currently swapped out but pending RenderViews. We have // started to swap these in, so the renderer process should not exit if // this count is non-zero. |