Index: content/test/test_render_frame_host.h |
diff --git a/content/test/test_render_frame_host.h b/content/test/test_render_frame_host.h |
index ebc79575e1d1e13f2ea22447b9f9ad68b658c889..7084ebe24e65eae61188f9bfd8d9bfd6d05a3ba3 100644 |
--- a/content/test/test_render_frame_host.h |
+++ b/content/test/test_render_frame_host.h |
@@ -50,35 +50,50 @@ class TestRenderFrameHost : public RenderFrameHostImpl, |
// RenderFrameHostTester implementation. |
TestRenderFrameHost* AppendChild(const std::string& frame_name) override; |
- void SendNavigate(int page_id, const GURL& url) override; |
- void SendFailedNavigate(int page_id, const GURL& url) override; |
+ void SendNavigate(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
+ const GURL& url) override; |
+ void SendFailedNavigate(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
+ const GURL& url) override; |
void SendNavigateWithTransition(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
const GURL& url, |
ui::PageTransition transition) override; |
void SetContentsMimeType(const std::string& mime_type) override; |
void SendBeforeUnloadACK(bool proceed) override; |
void SimulateSwapOutACK() override; |
- void SendNavigateWithTransitionAndResponseCode( |
- int page_id, |
- const GURL& url, ui::PageTransition transition, |
- int response_code); |
- void SendNavigateWithOriginalRequestURL( |
- int page_id, |
- const GURL& url, |
- const GURL& original_request_url); |
- void SendNavigateWithFile( |
- int page_id, |
- const GURL& url, |
- const base::FilePath& file_path); |
+ void SendNavigateWithTransitionAndResponseCode(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
+ const GURL& url, |
+ ui::PageTransition transition, |
+ int response_code); |
+ void SendNavigateWithOriginalRequestURL(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
+ const GURL& url, |
+ const GURL& original_request_url); |
+ void SendNavigateWithFile(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
+ const GURL& url, |
+ const base::FilePath& file_path); |
void SendNavigateWithParams( |
FrameHostMsg_DidCommitProvisionalLoad_Params* params); |
- void SendNavigateWithRedirects( |
- int page_id, |
- const GURL& url, |
- const std::vector<GURL>& redirects); |
+ void SendNavigateWithRedirects(int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
+ const GURL& url, |
+ const std::vector<GURL>& redirects); |
void SendNavigateWithParameters( |
int page_id, |
+ int nav_entry_id, |
+ bool did_create_new_entry, |
const GURL& url, |
ui::PageTransition transition, |
const GURL& original_request_url, |