| Index: content/browser/renderer_host/render_view_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
|
| index 48fb90928c549e19474276a05418dd252584c003..0d7080a0521c99611bb8bf495361259f29ad44c5 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -209,6 +209,7 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| virtual void NotifyMoveOrResizeStarted() OVERRIDE;
|
| virtual void ReloadFrame() OVERRIDE;
|
| virtual void SetAltErrorPageURL(const GURL& url) OVERRIDE;
|
| + virtual void SetHostsGuest(bool hosts_guest) OVERRIDE;
|
| virtual void SetWebUIProperty(const std::string& name,
|
| const std::string& value) OVERRIDE;
|
| virtual void SetZoomLevel(double level) OVERRIDE;
|
| @@ -537,6 +538,10 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| // See BindingsPolicy for details.
|
| int enabled_bindings_;
|
|
|
| + // Indicates whether or not this RenderViewHost is set up as a host
|
| + // of a guest RenderView.
|
| + bool hosts_guest_;
|
| +
|
| // The request_id for the pending cross-site request. Set to -1 if
|
| // there is a pending request, but we have not yet started the unload
|
| // for the current page. Set to the request_id value of the pending
|
|
|