| Index: content/browser/frame_host/cross_process_frame_connector.h
|
| diff --git a/content/browser/frame_host/cross_process_frame_connector.h b/content/browser/frame_host/cross_process_frame_connector.h
|
| index b3d87a4c4d512a01c6349f296117f479955632fb..7f5073b28b656e1b616ed1f7b317deb07aa5b1bf 100644
|
| --- a/content/browser/frame_host/cross_process_frame_connector.h
|
| +++ b/content/browser/frame_host/cross_process_frame_connector.h
|
| @@ -22,7 +22,7 @@ struct FrameHostMsg_ReclaimCompositorResources_Params;
|
| struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params;
|
|
|
| namespace content {
|
| -class RenderFrameHostImpl;
|
| +class RenderFrameProxyHost;
|
| class RenderWidgetHostImpl;
|
| class RenderWidgetHostViewChildFrame;
|
|
|
| @@ -65,7 +65,7 @@ class CrossProcessFrameConnector {
|
| public:
|
| // |frame_proxy_in_parent_renderer| corresponds to A2 in the example above.
|
| explicit CrossProcessFrameConnector(
|
| - RenderFrameHostImpl* frame_proxy_in_parent_renderer);
|
| + RenderFrameProxyHost* frame_proxy_in_parent_renderer);
|
| virtual ~CrossProcessFrameConnector();
|
|
|
| bool OnMessageReceived(const IPC::Message &msg);
|
| @@ -108,7 +108,7 @@ class CrossProcessFrameConnector {
|
| // process.
|
| // TODO(kenrb): The type becomes RenderFrameProxyHost when that class comes
|
| // to exist.
|
| - RenderFrameHostImpl* frame_proxy_in_parent_renderer_;
|
| + RenderFrameProxyHost* frame_proxy_in_parent_renderer_;
|
|
|
| // The RenderWidgetHostView for the frame. Initially NULL.
|
| RenderWidgetHostViewChildFrame* view_;
|
|
|