| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/renderer_host/test_render_view_host.h" |
| 6 #include "chrome/browser/tab_contents/test_web_contents.h" |
| 7 |
| 8 TestWebContents::TestWebContents(Profile* profile, SiteInstance* instance, |
| 9 RenderViewHostFactory* rvh_factory) |
| 10 : WebContents(profile, instance, rvh_factory, MSG_ROUTING_NONE, NULL), |
| 11 transition_cross_site(false) { |
| 12 } |
| 13 |
| 14 TestRenderViewHost* TestWebContents::pending_rvh() { |
| 15 return static_cast<TestRenderViewHost*>( |
| 16 render_manager_.pending_render_view_host_); |
| 17 } |
| OLD | NEW |