OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/path_service.h" | 5 #include "base/path_service.h" |
6 #include "base/strings/utf_string_conversions.h" | 6 #include "base/strings/utf_string_conversions.h" |
7 #include "content/browser/child_process_security_policy_impl.h" | 7 #include "content/browser/child_process_security_policy_impl.h" |
8 #include "content/browser/frame_host/render_frame_host_impl.h" | 8 #include "content/browser/frame_host/render_frame_host_impl.h" |
9 #include "content/browser/renderer_host/render_message_filter.h" | 9 #include "content/browser/renderer_host/render_message_filter.h" |
10 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 10 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 private: | 57 private: |
58 RenderViewHostTestBrowserClient test_browser_client_; | 58 RenderViewHostTestBrowserClient test_browser_client_; |
59 ContentBrowserClient* old_browser_client_; | 59 ContentBrowserClient* old_browser_client_; |
60 | 60 |
61 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTest); | 61 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTest); |
62 }; | 62 }; |
63 | 63 |
64 // All about URLs reported by the renderer should get rewritten to about:blank. | 64 // All about URLs reported by the renderer should get rewritten to about:blank. |
65 // See RenderViewHost::OnNavigate for a discussion. | 65 // See RenderViewHost::OnNavigate for a discussion. |
66 TEST_F(RenderViewHostTest, FilterAbout) { | 66 TEST_F(RenderViewHostTest, FilterAbout) { |
67 test_rvh()->SendNavigate(1, GURL("about:cache")); | 67 contents()->GetMainFrame()->SendNavigate(1, GURL("about:cache")); |
68 ASSERT_TRUE(controller().GetVisibleEntry()); | 68 ASSERT_TRUE(controller().GetVisibleEntry()); |
69 EXPECT_EQ(GURL(url::kAboutBlankURL), | 69 EXPECT_EQ(GURL(url::kAboutBlankURL), |
70 controller().GetVisibleEntry()->GetURL()); | 70 controller().GetVisibleEntry()->GetURL()); |
71 } | 71 } |
72 | 72 |
73 // Create a full screen popup RenderWidgetHost and View. | 73 // Create a full screen popup RenderWidgetHost and View. |
74 TEST_F(RenderViewHostTest, CreateFullscreenWidget) { | 74 TEST_F(RenderViewHostTest, CreateFullscreenWidget) { |
75 int routing_id = process()->GetNextRoutingID(); | 75 int routing_id = process()->GetNextRoutingID(); |
76 test_rvh()->CreateNewFullscreenWidget(routing_id); | 76 test_rvh()->CreateNewFullscreenWidget(routing_id); |
77 } | 77 } |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 const std::string data_url = "data:image/gif;base64," | 309 const std::string data_url = "data:image/gif;base64," |
310 "R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs="; | 310 "R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs="; |
311 | 311 |
312 tester->Reset(); | 312 tester->Reset(); |
313 tester->Test(data_url); | 313 tester->Test(data_url); |
314 EXPECT_EQ(tester->UrlString(), data_url); | 314 EXPECT_EQ(tester->UrlString(), data_url); |
315 EXPECT_TRUE(tester->IsDownloaded()); | 315 EXPECT_TRUE(tester->IsDownloaded()); |
316 } | 316 } |
317 | 317 |
318 } // namespace content | 318 } // namespace content |
OLD | NEW |