Index: content/browser/frame_host/interstitial_page_impl.h |
diff --git a/content/browser/frame_host/interstitial_page_impl.h b/content/browser/frame_host/interstitial_page_impl.h |
index b1dd303ce8db557c5af3501019e8d8bbfbbabb4c..d29390156db03506aecb8a6a3bb54e7487e3b313 100644 |
--- a/content/browser/frame_host/interstitial_page_impl.h |
+++ b/content/browser/frame_host/interstitial_page_impl.h |
@@ -168,10 +168,6 @@ class CONTENT_EXPORT InterstitialPageImpl |
WebContents* web_contents() const; |
const GURL& url() const { return url_; } |
- // Creates the RenderViewHost containing the interstitial content. |
- // Overriden in unit tests. |
- virtual RenderViewHost* CreateRenderViewHost(); |
- |
// Creates the WebContentsView that shows the interstitial RVH. |
// Overriden in unit tests. |
virtual WebContentsView* CreateWebContentsView(); |
@@ -201,6 +197,9 @@ class CONTENT_EXPORT InterstitialPageImpl |
void OnDomOperationResponse(const std::string& json_string, |
int automation_id); |
+ // Creates the RenderViewHost containing the interstitial content. |
+ RenderViewHostImpl* CreateRenderViewHost(); |
+ |
// The contents in which we are displayed. This is valid until Hide is |
// called, at which point it will be set to NULL because the WebContents |
// itself may be deleted. |