summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_tab_container.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/external_tab_container.cc')
-rw-r--r--chrome/browser/external_tab_container.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/external_tab_container.cc b/chrome/browser/external_tab_container.cc
index 59c8a34..38d748e 100644
--- a/chrome/browser/external_tab_container.cc
+++ b/chrome/browser/external_tab_container.cc
@@ -429,8 +429,8 @@ void ExternalTabContainer::Observe(NotificationType type,
RenderViewHost* rvh = Details<RenderViewHost>(details).ptr();
if (rvh) {
AutomationResourceMessageFilter::RegisterRenderView(
- rvh->process()->pid(), rvh->routing_id(), tab_handle_,
- automation_resource_message_filter_);
+ rvh->process()->id(), rvh->routing_id(),
+ tab_handle_, automation_resource_message_filter_);
}
}
break;
@@ -440,7 +440,7 @@ void ExternalTabContainer::Observe(NotificationType type,
RenderViewHost* rvh = Details<RenderViewHost>(details).ptr();
if (rvh) {
AutomationResourceMessageFilter::UnRegisterRenderView(
- rvh->process()->pid(), rvh->routing_id());
+ rvh->process()->id(), rvh->routing_id());
}
}
break;