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

Unified Diff: chrome/browser/extensions/extension_tab_id_map.cc

Issue 8515027: Define the public version of the browser side RenderProcessHost interface. This interface is not ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
Index: chrome/browser/extensions/extension_tab_id_map.cc
===================================================================
--- chrome/browser/extensions/extension_tab_id_map.cc (revision 110571)
+++ chrome/browser/extensions/extension_tab_id_map.cc (working copy)
@@ -74,7 +74,7 @@
base::Bind(
&ExtensionTabIdMap::SetTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->id(), host->routing_id(),
+ host->process()->GetID(), host->routing_id(),
tab->restore_tab_helper()->session_id().id(),
tab->restore_tab_helper()->window_id().id()));
break;
@@ -88,7 +88,7 @@
base::Bind(
&ExtensionTabIdMap::SetTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->id(), host->routing_id(),
+ host->process()->GetID(), host->routing_id(),
tab->restore_tab_helper()->session_id().id(),
tab->restore_tab_helper()->window_id().id()));
break;
@@ -107,7 +107,7 @@
base::Bind(
&ExtensionTabIdMap::SetTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->id(), host->routing_id(),
+ host->process()->GetID(), host->routing_id(),
tab->restore_tab_helper()->session_id().id(),
tab->restore_tab_helper()->window_id().id()));
break;
@@ -119,7 +119,7 @@
base::Bind(
&ExtensionTabIdMap::ClearTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->id(), host->routing_id()));
+ host->process()->GetID(), host->routing_id()));
break;
}
default:
« no previous file with comments | « chrome/browser/extensions/extension_tab_helper.cc ('k') | chrome/browser/extensions/extension_webrequest_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698