| Index: content/public/test/test_renderer_host.h
|
| diff --git a/content/public/test/test_renderer_host.h b/content/public/test/test_renderer_host.h
|
| index 029b70ed4db6223111a2340c0857e86315ea5a1b..e9aa8211d6ec52816329a6ad13ade77e63fa527f 100644
|
| --- a/content/public/test/test_renderer_host.h
|
| +++ b/content/public/test/test_renderer_host.h
|
| @@ -74,14 +74,22 @@ class RenderFrameHostTester {
|
| // information. Sets the rest of the parameters in the message to the
|
| // "typical" values. This is a helper function for simulating the most common
|
| // types of loads.
|
| - virtual void SendNavigate(int page_id, const GURL& url) = 0;
|
| - virtual void SendFailedNavigate(int page_id, const GURL& url) = 0;
|
| + virtual void SendNavigate(int page_id,
|
| + int nav_entry_id,
|
| + bool did_create_new_entry,
|
| + const GURL& url) = 0;
|
| + virtual void SendFailedNavigate(int page_id,
|
| + int nav_entry_id,
|
| + bool did_create_new_entry,
|
| + const GURL& url) = 0;
|
|
|
| // Calls OnDidCommitProvisionalLoad on the RenderFrameHost with the given
|
| // information, including a custom PageTransition. Sets the rest of the
|
| // parameters in the message to the "typical" values. This is a helper
|
| // function for simulating the most common types of loads.
|
| virtual void SendNavigateWithTransition(int page_id,
|
| + int nav_entry_id,
|
| + bool did_create_new_entry,
|
| const GURL& url,
|
| ui::PageTransition transition) = 0;
|
|
|
|
|