1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
8 #include "base/strings/string16.h"
9 #include "content/public/browser/invalidate_type.h"
10 #include "content/public/browser/navigation_controller.h"
11 #include "ui/base/page_transition_types.h"
12 #include "ui/base/window_open_disposition.h"
15 struct FrameHostMsg_DidCommitProvisionalLoad_Params
;
16 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params
;
20 class RenderFrameHostImpl
;
21 struct LoadCommittedDetails
;
24 // A delegate API used by Navigator to notify its embedder of navigation
26 class CONTENT_EXPORT NavigatorDelegate
{
28 // The RenderFrameHost started a provisional load for the frame
29 // represented by |render_frame_host|.
30 virtual void DidStartProvisionalLoad(
31 RenderFrameHostImpl
* render_frame_host
,
32 const GURL
& validated_url
,
34 bool is_iframe_srcdoc
) {}
36 // The |render_frame_host| started a transition-flagged navigation.
37 virtual void DidStartNavigationTransition(
38 RenderFrameHostImpl
* render_frame_host
) {}
40 // A provisional load in |render_frame_host| failed.
41 virtual void DidFailProvisionalLoadWithError(
42 RenderFrameHostImpl
* render_frame_host
,
43 const FrameHostMsg_DidFailProvisionalLoadWithError_Params
& params
) {}
45 // Document load in |render_frame_host| failed.
46 virtual void DidFailLoadWithError(
47 RenderFrameHostImpl
* render_frame_host
,
50 const base::string16
& error_description
) {}
52 // A navigation was committed in |render_frame_host|.
53 virtual void DidCommitProvisionalLoad(
54 RenderFrameHostImpl
* render_frame_host
,
56 ui::PageTransition transition_type
) {}
58 // Handles post-navigation tasks in navigation BEFORE the entry has been
59 // committed to the NavigationController.
60 virtual void DidNavigateMainFramePreCommit(bool navigation_is_within_page
) {}
62 // Handles post-navigation tasks in navigation AFTER the entry has been
63 // committed to the NavigationController. Note that the NavigationEntry is
64 // not provided since it may be invalid/changed after being committed. The
65 // NavigationController's last committed entry is for this navigation.
66 virtual void DidNavigateMainFramePostCommit(
67 RenderFrameHostImpl
* render_frame_host
,
68 const LoadCommittedDetails
& details
,
69 const FrameHostMsg_DidCommitProvisionalLoad_Params
& params
) {}
70 virtual void DidNavigateAnyFramePostCommit(
71 RenderFrameHostImpl
* render_frame_host
,
72 const LoadCommittedDetails
& details
,
73 const FrameHostMsg_DidCommitProvisionalLoad_Params
& params
) {}
75 virtual void SetMainFrameMimeType(const std::string
& mime_type
) {}
76 virtual bool CanOverscrollContent() const;
78 // Notification to the Navigator embedder that navigation state has
79 // changed. This method corresponds to
80 // WebContents::NotifyNavigationStateChanged.
81 virtual void NotifyChangedNavigationState(InvalidateTypes changed_flags
) {}
83 // Notifies the Navigator embedder that it is beginning to navigate a frame.
84 virtual void AboutToNavigateRenderFrame(
85 RenderFrameHostImpl
* old_host
,
86 RenderFrameHostImpl
* new_host
) {}
88 // Notifies the Navigator embedder that a navigation to the pending
89 // NavigationEntry has started in the browser process.
90 virtual void DidStartNavigationToPendingEntry(
92 NavigationController::ReloadType reload_type
) {}
94 // Opens a URL with the given parameters. See PageNavigator::OpenURL, which
96 virtual void RequestOpenURL(RenderFrameHostImpl
* render_frame_host
,
97 const OpenURLParams
& params
) {}
99 // Returns whether URLs for aborted browser-initiated navigations should be
100 // preserved in the omnibox. Defaults to false.
101 virtual bool ShouldPreserveAbortedURLs();
104 } // namspace content
106 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_