| 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/navigation_controller_impl.h" |
| 8 #include "content/browser/renderer_host/test_render_view_host.h" | 9 #include "content/browser/renderer_host/test_render_view_host.h" |
| 9 #include "content/browser/web_contents/navigation_controller_impl.h" | |
| 10 #include "content/common/input_messages.h" | 10 #include "content/common/input_messages.h" |
| 11 #include "content/common/view_messages.h" | 11 #include "content/common/view_messages.h" |
| 12 #include "content/port/browser/render_view_host_delegate_view.h" | 12 #include "content/port/browser/render_view_host_delegate_view.h" |
| 13 #include "content/public/browser/navigation_entry.h" | 13 #include "content/public/browser/navigation_entry.h" |
| 14 #include "content/public/common/bindings_policy.h" | 14 #include "content/public/common/bindings_policy.h" |
| 15 #include "content/public/common/drop_data.h" | 15 #include "content/public/common/drop_data.h" |
| 16 #include "content/public/common/page_transition_types.h" | 16 #include "content/public/common/page_transition_types.h" |
| 17 #include "content/public/common/url_constants.h" | 17 #include "content/public/common/url_constants.h" |
| 18 #include "content/public/test/mock_render_process_host.h" | 18 #include "content/public/test/mock_render_process_host.h" |
| 19 #include "content/test/test_content_browser_client.h" | 19 #include "content/test/test_content_browser_client.h" |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 } | 286 } |
| 287 | 287 |
| 288 TEST_F(RenderViewHostTest, RoutingIdSane) { | 288 TEST_F(RenderViewHostTest, RoutingIdSane) { |
| 289 EXPECT_EQ(test_rvh()->GetProcess(), | 289 EXPECT_EQ(test_rvh()->GetProcess(), |
| 290 test_rvh()->main_render_frame_host()->GetProcess()); | 290 test_rvh()->main_render_frame_host()->GetProcess()); |
| 291 EXPECT_NE(test_rvh()->GetRoutingID(), | 291 EXPECT_NE(test_rvh()->GetRoutingID(), |
| 292 test_rvh()->main_render_frame_host()->routing_id()); | 292 test_rvh()->main_render_frame_host()->routing_id()); |
| 293 } | 293 } |
| 294 | 294 |
| 295 } // namespace content | 295 } // namespace content |
| OLD | NEW |