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> |
| 9 |
8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
9 #include "content/browser/frame_host/render_frame_host_impl.h" | 11 #include "content/browser/frame_host/render_frame_host_impl.h" |
10 #include "content/public/common/page_transition_types.h" | 12 #include "content/public/common/page_transition_types.h" |
11 | 13 |
12 struct FrameHostMsg_DidCommitProvisionalLoad_Params; | 14 struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
13 | 15 |
14 namespace content { | 16 namespace content { |
15 | 17 |
16 class TestRenderFrameHost : public RenderFrameHostImpl { | 18 class TestRenderFrameHost : public RenderFrameHostImpl { |
17 public: | 19 public: |
(...skipping 18 matching lines...) Expand all Loading... |
36 void SendNavigateWithOriginalRequestURL( | 38 void SendNavigateWithOriginalRequestURL( |
37 int page_id, | 39 int page_id, |
38 const GURL& url, | 40 const GURL& url, |
39 const GURL& original_request_url); | 41 const GURL& original_request_url); |
40 void SendNavigateWithFile( | 42 void SendNavigateWithFile( |
41 int page_id, | 43 int page_id, |
42 const GURL& url, | 44 const GURL& url, |
43 const base::FilePath& file_path); | 45 const base::FilePath& file_path); |
44 void SendNavigateWithParams( | 46 void SendNavigateWithParams( |
45 FrameHostMsg_DidCommitProvisionalLoad_Params* params); | 47 FrameHostMsg_DidCommitProvisionalLoad_Params* params); |
| 48 void SendNavigateWithRedirects(int page_id, |
| 49 const GURL& url, |
| 50 const std::vector<GURL>& redirects); |
46 void SendNavigateWithParameters( | 51 void SendNavigateWithParameters( |
47 int page_id, | 52 int page_id, |
48 const GURL& url, | 53 const GURL& url, |
49 PageTransition transition, | 54 PageTransition transition, |
50 const GURL& original_request_url, | 55 const GURL& original_request_url, |
51 int response_code, | 56 int response_code, |
52 const base::FilePath* file_path_for_history_item); | 57 const base::FilePath* file_path_for_history_item, |
| 58 const std::vector<GURL>& redirects); |
53 | 59 |
54 void set_contents_mime_type(const std::string& mime_type) { | 60 void set_contents_mime_type(const std::string& mime_type) { |
55 contents_mime_type_ = mime_type; | 61 contents_mime_type_ = mime_type; |
56 } | 62 } |
57 | 63 |
58 // If set, navigations will appear to have cleared the history list in the | 64 // If set, navigations will appear to have cleared the history list in the |
59 // RenderFrame | 65 // RenderFrame |
60 // (FrameHostMsg_DidCommitProvisionalLoad_Params::history_list_was_cleared). | 66 // (FrameHostMsg_DidCommitProvisionalLoad_Params::history_list_was_cleared). |
61 // False by default. | 67 // False by default. |
62 void set_simulate_history_list_was_cleared(bool cleared) { | 68 void set_simulate_history_list_was_cleared(bool cleared) { |
63 simulate_history_list_was_cleared_ = cleared; | 69 simulate_history_list_was_cleared_ = cleared; |
64 } | 70 } |
65 | 71 |
66 // TODO(nick): As necessary for testing, override behavior of RenderFrameHost | 72 // TODO(nick): As necessary for testing, override behavior of RenderFrameHost |
67 // here. | 73 // here. |
68 | 74 |
69 private: | 75 private: |
70 std::string contents_mime_type_; | 76 std::string contents_mime_type_; |
71 | 77 |
72 // See set_simulate_history_list_was_cleared() above. | 78 // See set_simulate_history_list_was_cleared() above. |
73 bool simulate_history_list_was_cleared_; | 79 bool simulate_history_list_was_cleared_; |
74 | 80 |
75 DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost); | 81 DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost); |
76 }; | 82 }; |
77 | 83 |
78 } // namespace content | 84 } // namespace content |
79 | 85 |
80 #endif // CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_ | 86 #endif // CONTENT_TEST_TEST_RENDER_FRAME_HOST_H_ |
OLD | NEW |