Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: chrome/browser/extensions/extension_info_map.h

Issue 8113035: Remove RenderProcessHost::is_extension_process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/app_process_apitest.cc ('k') | chrome/browser/extensions/extension_info_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_info_map.h
diff --git a/chrome/browser/extensions/extension_info_map.h b/chrome/browser/extensions/extension_info_map.h
index 27361659e9726e8dde658aef2e8caae021e8d829..25cd3b1db8c5da7acbbebbd3d68bd3fa9abea94f 100644
--- a/chrome/browser/extensions/extension_info_map.h
+++ b/chrome/browser/extensions/extension_info_map.h
@@ -50,14 +50,15 @@ class ExtensionInfoMap : public base::RefCountedThreadSafe<ExtensionInfoMap> {
// sub-profile (incognito to original profile, or vice versa).
bool CanCrossIncognito(const Extension* extension);
- // Registers a RenderProcessHost with |host_id| as hosting an extension.
- void BindingsEnabledForProcess(int host_id);
+ // Registers a RenderProcessHost with |render_process_id| as hosting an
+ // extension.
+ void BindingsEnabledForProcess(int render_process_id);
- // Unregisters the RenderProcessHost with |host_id|.
- void BindingsDisabledForProcess(int host_id);
+ // Unregisters the RenderProcessHost with |render_process_id|.
+ void BindingsDisabledForProcess(int render_process_id);
// True if this process host is hosting an extension.
- bool AreBindingsEnabledForProcess(int host_id) const;
+ bool AreBindingsEnabledForProcess(int render_process_id) const;
private:
// Extra dynamic data related to an extension.
« no previous file with comments | « chrome/browser/extensions/app_process_apitest.cc ('k') | chrome/browser/extensions/extension_info_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698