Index: content/public/browser/interstitial_page.h |
diff --git a/content/public/browser/interstitial_page.h b/content/public/browser/interstitial_page.h |
index 368458a13e58d8e89319adf2b564a8eb843b09db..0eb57e0bc673941627bb94e2516c8ffee1f1abea 100644 |
--- a/content/public/browser/interstitial_page.h |
+++ b/content/public/browser/interstitial_page.h |
@@ -16,7 +16,7 @@ class Size; |
namespace content { |
class InterstitialPageDelegate; |
-class RenderViewHost; |
+class RenderFrameHost; |
class WebContents; |
// This class is used for showing interstitial pages, pages that show some |
@@ -79,7 +79,9 @@ class InterstitialPage { |
// Sets the focus to the interstitial. |
virtual void Focus() = 0; |
- virtual RenderViewHost* GetRenderViewHostForTesting() const = 0; |
+ // Gets the RenderFrameHost associated with the Interstitial Page. |
Charlie Reis
2015/01/08 21:06:02
nit: with the interstitial page's main frame.
(No
knn
2015/01/08 21:46:13
Done.
|
+ virtual RenderFrameHost* GetMainFrame() const = 0; |
+ |
virtual InterstitialPageDelegate* GetDelegateForTesting() = 0; |
virtual void DontCreateViewForTesting() = 0; |
}; |