| 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:
|
|
|