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