Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: content/browser/frame_host/interstitial_page_navigator_impl.h

Issue 2364943002: Create NavigationHandles for interstitials if needed (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_INTERSTITIAL_PAGE_NAVIGATOR_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_NAVIGATOR_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_NAVIGATOR_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_NAVIGATOR_IMPL_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "content/browser/frame_host/navigation_handle_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 namespace content { 14 namespace content {
14 15
15 class NavigationControllerImpl; 16 class NavigationControllerImpl;
16 class InterstitialPageImpl; 17 class InterstitialPageImpl;
17 18
18 // Navigator implementation specific to InterstialPageImpl. It allows only one 19 // Navigator implementation specific to InterstialPageImpl. It allows only one
19 // navigation to commit, since interstitial pages are not allowed to navigate. 20 // navigation to commit, since interstitial pages are not allowed to navigate.
20 class CONTENT_EXPORT InterstitialPageNavigatorImpl : public Navigator { 21 class CONTENT_EXPORT InterstitialPageNavigatorImpl : public Navigator {
21 public: 22 public:
22 InterstitialPageNavigatorImpl( 23 InterstitialPageNavigatorImpl(
23 InterstitialPageImpl* interstitial, 24 InterstitialPageImpl* interstitial,
24 NavigationControllerImpl* navigation_controller); 25 NavigationControllerImpl* navigation_controller);
25 26
26 NavigatorDelegate* GetDelegate() override; 27 NavigatorDelegate* GetDelegate() override;
27 NavigationController* GetController() override; 28 NavigationController* GetController() override;
29 void DidStartProvisionalLoad(
30 RenderFrameHostImpl* render_frame_host,
31 const GURL& url,
32 const base::TimeTicks& navigation_start) override;
28 void DidNavigate(RenderFrameHostImpl* render_frame_host, 33 void DidNavigate(RenderFrameHostImpl* render_frame_host,
29 const FrameHostMsg_DidCommitProvisionalLoad_Params& 34 const FrameHostMsg_DidCommitProvisionalLoad_Params&
30 input_params) override; 35 input_params) override;
36 NavigationHandleImpl* GetNavigationHandleForFrameHost(
37 RenderFrameHostImpl* render_frame_host) override;
31 38
32 private: 39 private:
33 ~InterstitialPageNavigatorImpl() override {} 40 ~InterstitialPageNavigatorImpl() override;
34 41
35 // The InterstitialPage with which this navigator object is associated. 42 // The InterstitialPage with which this navigator object is associated.
36 // Non owned pointer. 43 // Non owned pointer.
37 InterstitialPageImpl* interstitial_; 44 InterstitialPageImpl* interstitial_;
38 45
39 // The NavigationController associated with this navigator. 46 // The NavigationController associated with this navigator.
40 NavigationControllerImpl* controller_; 47 NavigationControllerImpl* controller_;
41 48
49 // The NavigationHandle associated with the interstitial navigation.
Charlie Reis 2016/09/23 18:51:11 Let's add a note that interstitials are assumed to
clamy 2016/09/26 11:37:27 Done.
50 std::unique_ptr<NavigationHandleImpl> navigation_handle_;
51
42 DISALLOW_COPY_AND_ASSIGN(InterstitialPageNavigatorImpl); 52 DISALLOW_COPY_AND_ASSIGN(InterstitialPageNavigatorImpl);
43 }; 53 };
44 54
45 } // namespace content 55 } // namespace content
46 56
47 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_NAVIGATOR_IMPL_H_ 57 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_NAVIGATOR_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698