OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/memory/scoped_ptr.h" |
9 #include "content/browser/frame_host/navigation_controller_impl.h" | 10 #include "content/browser/frame_host/navigation_controller_impl.h" |
10 #include "content/browser/frame_host/navigator.h" | 11 #include "content/browser/frame_host/navigator.h" |
11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
12 | 13 |
13 struct FrameMsg_Navigate_Params; | 14 struct FrameMsg_Navigate_Params; |
14 | 15 |
15 namespace content { | 16 namespace content { |
16 | 17 |
17 class NavigationControllerImpl; | 18 class NavigationControllerImpl; |
18 class NavigatorDelegate; | 19 class NavigatorDelegate; |
19 struct LoadCommittedDetails; | 20 struct LoadCommittedDetails; |
| 21 struct NavigationParamsWithRequestAndCommitInfo; |
20 | 22 |
21 // This class is an implementation of Navigator, responsible for managing | 23 // This class is an implementation of Navigator, responsible for managing |
22 // navigations in regular browser tabs. | 24 // navigations in regular browser tabs. |
23 class CONTENT_EXPORT NavigatorImpl : public Navigator { | 25 class CONTENT_EXPORT NavigatorImpl : public Navigator { |
24 public: | 26 public: |
25 NavigatorImpl(NavigationControllerImpl* navigation_controller, | 27 NavigatorImpl(NavigationControllerImpl* navigation_controller, |
26 NavigatorDelegate* delegate); | 28 NavigatorDelegate* delegate); |
27 | 29 |
28 // Fills in |params| based on the content of |entry|. | |
29 static void MakeNavigateParams(const NavigationEntryImpl& entry, | |
30 const NavigationControllerImpl& controller, | |
31 NavigationController::ReloadType reload_type, | |
32 base::TimeTicks navigation_start, | |
33 FrameMsg_Navigate_Params* params); | |
34 | |
35 // Navigator implementation. | 30 // Navigator implementation. |
36 virtual NavigationController* GetController() OVERRIDE; | 31 virtual NavigationController* GetController() OVERRIDE; |
37 virtual void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host, | 32 virtual void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host, |
38 const GURL& url, | 33 const GURL& url, |
39 bool is_transition_navigation) OVERRIDE; | 34 bool is_transition_navigation) OVERRIDE; |
40 virtual void DidFailProvisionalLoadWithError( | 35 virtual void DidFailProvisionalLoadWithError( |
41 RenderFrameHostImpl* render_frame_host, | 36 RenderFrameHostImpl* render_frame_host, |
42 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) | 37 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) |
43 OVERRIDE; | 38 OVERRIDE; |
44 virtual void DidFailLoadWithError( | 39 virtual void DidFailLoadWithError( |
(...skipping 25 matching lines...) Expand all Loading... |
70 const GURL& url, | 65 const GURL& url, |
71 const std::vector<GURL>& redirect_chain, | 66 const std::vector<GURL>& redirect_chain, |
72 const Referrer& referrer, | 67 const Referrer& referrer, |
73 PageTransition page_transition, | 68 PageTransition page_transition, |
74 WindowOpenDisposition disposition, | 69 WindowOpenDisposition disposition, |
75 const GlobalRequestID& transferred_global_request_id, | 70 const GlobalRequestID& transferred_global_request_id, |
76 bool should_replace_current_entry, | 71 bool should_replace_current_entry, |
77 bool user_gesture) OVERRIDE; | 72 bool user_gesture) OVERRIDE; |
78 virtual void CommitNavigation( | 73 virtual void CommitNavigation( |
79 RenderFrameHostImpl* render_frame_host, | 74 RenderFrameHostImpl* render_frame_host, |
80 const NavigationBeforeCommitInfo& info) OVERRIDE; | 75 const FrameMsg_CommitNavigation_Params& commit_navigation_params) |
| 76 OVERRIDE; |
81 | 77 |
| 78 // PlzNavigate |
| 79 scoped_ptr<NavigationParamsWithRequestAndCommitInfo> |
| 80 MakeNavigationParamsForTest( |
| 81 const NavigationEntryImpl& entry, |
| 82 NavigationController::ReloadType reload_type); |
82 private: | 83 private: |
83 virtual ~NavigatorImpl() {} | 84 virtual ~NavigatorImpl() {} |
84 | 85 |
85 // Navigates to the given entry, which must be the pending entry. Private | 86 // Navigates to the given entry, which must be the pending entry. Private |
86 // because all callers should use NavigateToPendingEntry. | 87 // because all callers should use NavigateToPendingEntry. |
87 bool NavigateToEntry( | 88 bool NavigateToEntry( |
88 RenderFrameHostImpl* render_frame_host, | 89 RenderFrameHostImpl* render_frame_host, |
89 const NavigationEntryImpl& entry, | 90 const NavigationEntryImpl& entry, |
90 NavigationController::ReloadType reload_type); | 91 NavigationController::ReloadType reload_type); |
91 | 92 |
(...skipping 15 matching lines...) Expand all Loading... |
107 | 108 |
108 // System time at which the current load was started. | 109 // System time at which the current load was started. |
109 base::TimeTicks current_load_start_; | 110 base::TimeTicks current_load_start_; |
110 | 111 |
111 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); | 112 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); |
112 }; | 113 }; |
113 | 114 |
114 } // namespace content | 115 } // namespace content |
115 | 116 |
116 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 117 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
OLD | NEW |