| Index: content/browser/web_contents/interstitial_page_impl.h
|
| diff --git a/content/browser/web_contents/interstitial_page_impl.h b/content/browser/web_contents/interstitial_page_impl.h
|
| index 1f4d94fcc8ebf9e38c2a1750be822e185a278fc8..63d7ab4c7d99cbb3409c793bea2e4a7ea7c283f4 100644
|
| --- a/content/browser/web_contents/interstitial_page_impl.h
|
| +++ b/content/browser/web_contents/interstitial_page_impl.h
|
| @@ -8,6 +8,7 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "content/browser/renderer_host/frame_tree.h"
|
| #include "content/browser/renderer_host/render_view_host_delegate.h"
|
| #include "content/browser/renderer_host/render_widget_host_delegate.h"
|
| #include "content/public/browser/interstitial_page.h"
|
| @@ -131,6 +132,8 @@ class CONTENT_EXPORT InterstitialPageImpl
|
| virtual SessionStorageNamespace* GetSessionStorageNamespace(
|
| SiteInstance* instance) OVERRIDE;
|
|
|
| + virtual FrameTree* GetFrameTree() OVERRIDE;
|
| +
|
| // RenderWidgetHostDelegate implementation:
|
| virtual void RenderWidgetDeleted(
|
| RenderWidgetHostImpl* render_widget_host) OVERRIDE;
|
| @@ -211,6 +214,9 @@ class CONTENT_EXPORT InterstitialPageImpl
|
| // that shutdown has started.
|
| RenderViewHostImpl* render_view_host_;
|
|
|
| + // The frame tree structure of the current page.
|
| + FrameTree frame_tree_;
|
| +
|
| // The IDs for the Render[View|Process]Host hidden by this interstitial.
|
| int original_child_id_;
|
| int original_rvh_id_;
|
|
|