summaryrefslogtreecommitdiffstats
path: root/content/public
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-04 02:54:23 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-04 02:54:23 +0000
commitdb2bc32956cf5321848976789f727eda66c6ae16 (patch)
treec2cf4191a97a98192fa0ca22ffe6e47327f47d3e /content/public
parentc4a56c29980508acd77500c219309e9b25cbf6d8 (diff)
downloadchromium_src-db2bc32956cf5321848976789f727eda66c6ae16.zip
chromium_src-db2bc32956cf5321848976789f727eda66c6ae16.tar.gz
chromium_src-db2bc32956cf5321848976789f727eda66c6ae16.tar.bz2
Make MHTMLGenerationManager observe RenderProcessHosts rather than use notifications.
BUG=170921 TEST=everything still works Review URL: https://codereview.chromium.org/123993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242993 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r--content/public/browser/render_process_host.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
index 16f0141..6c19cf9 100644
--- a/content/public/browser/render_process_host.h
+++ b/content/public/browser/render_process_host.h
@@ -150,12 +150,12 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
// |partition|.
virtual bool InSameStoragePartition(StoragePartition* partition) const = 0;
- // Returns the unique ID for this child process. This can be used later in
- // a call to FromID() to get back to this object (this is used to avoid
+ // Returns the unique ID for this child process host. This can be used later
+ // in a call to FromID() to get back to this object (this is used to avoid
// sending non-threadsafe pointers to other threads).
//
- // This ID will be unique for all child processes, including workers, plugins,
- // etc.
+ // This ID will be unique across all child process hosts, including workers,
+ // plugins, etc.
virtual int GetID() const = 0;
// Returns true iff channel_ has been set to non-NULL. Use this for checking