Index: content/renderer/render_frame_impl.h |
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h |
index 5c9e54cec94f287e9ee3e02c2947f30dbe71ad3b..f6e2522f6835e91960e49c04757059d9ef9ce3bd 100644 |
--- a/content/renderer/render_frame_impl.h |
+++ b/content/renderer/render_frame_impl.h |
@@ -97,8 +97,9 @@ class CONTENT_EXPORT RenderFrameImpl |
// TODO(nasko): Those are page-level methods at this time and come from |
// WebViewClient. We should move them to be WebFrameClient calls and put |
// logic in the browser side to balance starts/stops. |
- void didStartLoading(); |
- void didStopLoading(); |
+ virtual void didStartLoading(bool to_different_document); |
+ virtual void didStopLoading(); |
+ virtual void didChangeLoadProgress(double load_progress); |
#if defined(ENABLE_PLUGINS) |
// Notification that a PPAPI plugin has been created. |
@@ -371,6 +372,7 @@ class CONTENT_EXPORT RenderFrameImpl |
base::WeakPtr<RenderViewImpl> render_view_; |
int routing_id_; |
+ bool is_loading_; |
bool is_swapped_out_; |
bool is_detaching_; |