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 36e0807492a12b0cc542a1b824ea2002da55433e..ccc8b19c98235846d3a8ec248027623be793da26 100644 |
--- a/content/browser/frame_host/interstitial_page_impl.h |
+++ b/content/browser/frame_host/interstitial_page_impl.h |
@@ -91,6 +91,13 @@ class CONTENT_EXPORT InterstitialPageImpl |
RenderViewHost* GetRenderViewHost() const; |
#endif |
+ // RenderViewHostDelegate implementation: |
+ // TODO(nasko): This should move to InterstitialPageNavigatorImpl, but in |
+ // the meantime, make it public, so it can be called directly. |
Charlie Reis
2014/02/05 23:30:37
nit: no comma after public
nasko
2014/02/06 01:55:13
Done.
|
+ virtual void DidNavigate( |
+ RenderViewHost* render_view_host, |
+ const FrameHostMsg_DidCommitProvisionalLoad_Params& params) OVERRIDE; |
+ |
protected: |
// NotificationObserver method: |
virtual void Observe(int type, |
@@ -111,9 +118,6 @@ class CONTENT_EXPORT InterstitialPageImpl |
virtual void RenderViewTerminated(RenderViewHost* render_view_host, |
base::TerminationStatus status, |
int error_code) OVERRIDE; |
- virtual void DidNavigate( |
- RenderViewHost* render_view_host, |
- const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; |
virtual void UpdateTitle(RenderViewHost* render_view_host, |
int32 page_id, |
const base::string16& title, |