| 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_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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 int response_code); | 61 int response_code); |
| 62 void SendNavigateWithOriginalRequestURL( | 62 void SendNavigateWithOriginalRequestURL( |
| 63 int page_id, | 63 int page_id, |
| 64 const GURL& url, | 64 const GURL& url, |
| 65 const GURL& original_request_url); | 65 const GURL& original_request_url); |
| 66 void SendNavigateWithFile( | 66 void SendNavigateWithFile( |
| 67 int page_id, | 67 int page_id, |
| 68 const GURL& url, | 68 const GURL& url, |
| 69 const base::FilePath& file_path); | 69 const base::FilePath& file_path); |
| 70 void SendNavigateWithParams( | 70 void SendNavigateWithParams( |
| 71 int page_id, |
| 71 FrameHostMsg_DidCommitProvisionalLoad_Params* params); | 72 FrameHostMsg_DidCommitProvisionalLoad_Params* params); |
| 72 void SendNavigateWithRedirects( | 73 void SendNavigateWithRedirects( |
| 73 int page_id, | 74 int page_id, |
| 74 const GURL& url, | 75 const GURL& url, |
| 75 const std::vector<GURL>& redirects); | 76 const std::vector<GURL>& redirects); |
| 76 void SendNavigateWithParameters( | 77 void SendNavigateWithParameters( |
| 77 int page_id, | 78 int page_id, |
| 78 const GURL& url, | 79 const GURL& url, |
| 79 PageTransition transition, | 80 PageTransition transition, |
| 80 const GURL& original_request_url, | 81 const GURL& original_request_url, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 107 | 108 |
| 108 // See set_simulate_history_list_was_cleared() above. | 109 // See set_simulate_history_list_was_cleared() above. |
| 109 bool simulate_history_list_was_cleared_; | 110 bool simulate_history_list_was_cleared_; |
| 110 | 111 |
| 111 DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost); | 112 DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost); |
| 112 }; | 113 }; |
| 113 | 114 |
| 114 } // namespace content | 115 } // namespace content |
| 115 | 116 |
| 116 #endif // CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_ | 117 #endif // CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_ |
| OLD | NEW |