Index: content/browser/tab_contents/tab_contents.cc |
=================================================================== |
--- content/browser/tab_contents/tab_contents.cc (revision 110303) |
+++ content/browser/tab_contents/tab_contents.cc (working copy) |
@@ -22,7 +22,7 @@ |
#include "content/browser/in_process_webkit/session_storage_namespace.h" |
#include "content/browser/load_from_memory_cache_details.h" |
#include "content/browser/load_notification_details.h" |
-#include "content/browser/renderer_host/render_process_host.h" |
+#include "content/browser/renderer_host/render_process_host_impl.h" |
#include "content/browser/renderer_host/render_view_host.h" |
#include "content/browser/renderer_host/render_widget_host_view.h" |
#include "content/browser/renderer_host/resource_dispatcher_host.h" |
@@ -847,7 +847,7 @@ |
double zoom_level; |
if (temporary_zoom_settings_) { |
zoom_level = zoom_map->GetTemporaryZoomLevel( |
- GetRenderProcessHost()->id(), render_view_host()->routing_id()); |
+ GetRenderProcessHost()->GetID(), render_view_host()->routing_id()); |
} else { |
GURL url; |
NavigationEntry* active_entry = controller().GetActiveEntry(); |
@@ -915,7 +915,7 @@ |
bool is_error_page = (url.spec() == chrome::kUnreachableWebDataURL); |
GURL validated_url(url); |
render_view_host()->FilterURL(ChildProcessSecurityPolicy::GetInstance(), |
- GetRenderProcessHost()->id(), &validated_url); |
+ GetRenderProcessHost()->GetID(), &validated_url); |
RenderViewHost* rvh = |
render_manager_.pending_render_view_host() ? |
@@ -964,7 +964,7 @@ |
<< ", frame_id: " << params.frame_id; |
GURL validated_url(params.url); |
render_view_host()->FilterURL(ChildProcessSecurityPolicy::GetInstance(), |
- GetRenderProcessHost()->id(), &validated_url); |
+ GetRenderProcessHost()->GetID(), &validated_url); |
if (net::ERR_ABORTED == params.error_code) { |
// EVIL HACK ALERT! Ignore failed loads when we're showing interstitials. |
@@ -1046,7 +1046,7 @@ |
&cert_id, &cert_status, |
&security_bits, |
&connection_status); |
- LoadFromMemoryCacheDetails details(url, GetRenderProcessHost()->id(), |
+ LoadFromMemoryCacheDetails details(url, GetRenderProcessHost()->GetID(), |
cert_id, cert_status); |
content::NotificationService::current()->Notify( |