Index: content/browser/frame_host/navigator.h |
diff --git a/content/browser/frame_host/navigator.h b/content/browser/frame_host/navigator.h |
index d069bf8a4e915a377f30fcdc619ec01be0232138..c12d59df709e18e55cc316be653b57277a71e46a 100644 |
--- a/content/browser/frame_host/navigator.h |
+++ b/content/browser/frame_host/navigator.h |
@@ -10,6 +10,7 @@ |
#include "content/public/browser/navigation_controller.h" |
class GURL; |
+struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; |
namespace base { |
@@ -55,6 +56,11 @@ class CONTENT_EXPORT Navigator : public base::RefCounted<Navigator> { |
const GURL& source_url, |
const GURL& target_url) {} |
+ // The RenderFrameHostImpl has has committed a navigation. |
Charlie Reis
2014/02/06 21:49:07
nit: has has
nasko
2014/02/06 21:58:43
Done.
|
+ virtual void DidNavigate( |
+ RenderFrameHostImpl* render_frame_host, |
+ const FrameHostMsg_DidCommitProvisionalLoad_Params& params) {} |
+ |
// Causes the Navigator to navigate in the right render frame to |entry|, |
// which must be already part of the entries in the navigation controller. |
// This does not change the NavigationController state. |