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

Side by Side Diff: content/test/test_render_frame_host.h

Issue 953503002: PlzNavigate: test updates post beforeUnload IPC refactor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move some methods around. Created 5 years, 9 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_TEST_TEST_RENDER_FRAME_HOST_H_ 5 #ifndef CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_
6 #define CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_ 6 #define CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const GURL& url, 78 const GURL& url,
79 const std::vector<GURL>& redirects); 79 const std::vector<GURL>& redirects);
80 void SendNavigateWithParameters( 80 void SendNavigateWithParameters(
81 int page_id, 81 int page_id,
82 const GURL& url, 82 const GURL& url,
83 ui::PageTransition transition, 83 ui::PageTransition transition,
84 const GURL& original_request_url, 84 const GURL& original_request_url,
85 int response_code, 85 int response_code,
86 const base::FilePath* file_path_for_history_item, 86 const base::FilePath* file_path_for_history_item,
87 const std::vector<GURL>& redirects); 87 const std::vector<GURL>& redirects);
88
89 // Normally this is a no-op.
clamy 2015/02/25 14:29:49 nit: I think you could add a sentence about the in
carlosk 2015/02/25 16:08:00 I followed what was done in other similarly commen
90 // PlzNavigate: this method simulates receiving a navigation request IPC.
clamy 2015/02/25 14:29:49 s/navigation request/BeginNavigation
carlosk 2015/02/25 16:08:00 Done.
88 void SendBeginNavigationWithURL(const GURL& url, bool has_user_gesture); 91 void SendBeginNavigationWithURL(const GURL& url, bool has_user_gesture);
89 92
90 void DidDisownOpener(); 93 void DidDisownOpener();
91 94
92 // If set, navigations will appear to have cleared the history list in the 95 // If set, navigations will appear to have cleared the history list in the
93 // RenderFrame 96 // RenderFrame
94 // (FrameHostMsg_DidCommitProvisionalLoad_Params::history_list_was_cleared). 97 // (FrameHostMsg_DidCommitProvisionalLoad_Params::history_list_was_cleared).
95 // False by default. 98 // False by default.
96 void set_simulate_history_list_was_cleared(bool cleared) { 99 void set_simulate_history_list_was_cleared(bool cleared) {
97 simulate_history_list_was_cleared_ = cleared; 100 simulate_history_list_was_cleared_ = cleared;
98 } 101 }
99 102
100 // Advances the RenderFrameHost (and through it the RenderFrameHostManager) to 103 // Advances the RenderFrameHost (and through it the RenderFrameHostManager) to
101 // a state where a new navigation can be committed by a renderer. Currently, 104 // a state where a new navigation can be committed by a renderer. Currently,
102 // this simulates a BeforeUnload ACK from the renderer. 105 // this simulates a BeforeUnload ACK from the renderer.
103 // PlzNavigate: this simulates a BeforeUnload ACK from the renderer, and the 106 // PlzNavigate: this simulates a BeforeUnload ACK from the renderer, and the
104 // interaction with the IO thread up until the response is ready to commit. 107 // interaction with the IO thread up until the response is ready to commit.
105 void PrepareForCommit(const GURL& url); 108 void PrepareForCommit();
109
110 // This method does the same as PrepareForCommit.
111 // PlzNavigate: Beyond doing the same as PrepareForCommit, this method will
112 // also simulate a server redirect IPC to |redirect_url|.
113 void PrepareForCommitWithServerRedirect(const GURL& redirect_url);
106 114
107 // Simulate receiving a FrameHostMsg_BeforeUnloadHandlersPresent. 115 // Simulate receiving a FrameHostMsg_BeforeUnloadHandlersPresent.
108 void SendBeforeUnloadHandlersPresent(bool present); 116 void SendBeforeUnloadHandlersPresent(bool present);
109 117
110 // Simulate receiving a FrameHostMsg_UnloadHandlersPresent. 118 // Simulate receiving a FrameHostMsg_UnloadHandlersPresent.
111 void SendUnloadHandlersPresent(bool present); 119 void SendUnloadHandlersPresent(bool present);
112 120
113 private: 121 private:
122
123 // Actual implementation of both PrepareForCommit* methods.
124 // PlzNavigate: If |redirect_url| is not nullptr, it will be used to simulate
125 // a PlzNavigate server redirect.
126 void PrepareForCommitInternal(const GURL* redirect_url);
127
114 TestRenderFrameHostCreationObserver child_creation_observer_; 128 TestRenderFrameHostCreationObserver child_creation_observer_;
115 129
116 std::string contents_mime_type_; 130 std::string contents_mime_type_;
117 131
118 // See set_simulate_history_list_was_cleared() above. 132 // See set_simulate_history_list_was_cleared() above.
119 bool simulate_history_list_was_cleared_; 133 bool simulate_history_list_was_cleared_;
120 134
121 DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost); 135 DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost);
122 }; 136 };
123 137
124 } // namespace content 138 } // namespace content
125 139
126 #endif // CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_ 140 #endif // CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698