From 57c6a6579cf274fe37d6196931a3034d90da7113 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 4 May 2009 07:58:34 +0000 Subject: Replace all occurrances of WebContents with TabContents. Review URL: http://codereview.chromium.org/99177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15194 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/renderer_host/render_view_host.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chrome/browser/renderer_host/render_view_host.h') diff --git a/chrome/browser/renderer_host/render_view_host.h b/chrome/browser/renderer_host/render_view_host.h index b86b5f5..b43e3ce 100644 --- a/chrome/browser/renderer_host/render_view_host.h +++ b/chrome/browser/renderer_host/render_view_host.h @@ -60,16 +60,16 @@ struct WebApplicationInfo; // // The intent of this class is to provide a view-agnostic communication // conduit with a renderer. This is so we can build HTML views not only as -// TabContents (see WebContents for an example) but also as views, etc. +// TabContents (see TabContents for an example) but also as views, etc. // // The exact API of this object needs to be more thoroughly designed. Right -// now it mimics what WebContents exposed, which is a fairly large API and may +// now it mimics what TabContents exposed, which is a fairly large API and may // contain things that are not relevant to a common subset of views. See also // the comment in render_view_host_delegate.h about the size and scope of the // delegate API. // // Right now, the concept of page navigation (both top level and frame) exists -// in the WebContents still, so if you instantiate one of these elsewhere, you +// in the TabContents still, so if you instantiate one of these elsewhere, you // will not be able to traverse pages back and forward. We need to determine // if we want to bring that and other functionality down into this object so // it can be shared by others. @@ -599,8 +599,8 @@ class RenderViewHost : public RenderWidgetHost { bool navigations_suspended_; // We only buffer a suspended navigation message while we a pending RVH for a - // WebContents. There will only ever be one suspended navigation, because - // WebContents will destroy the pending RVH and create a new one if a second + // TabContents. There will only ever be one suspended navigation, because + // TabContents will destroy the pending RVH and create a new one if a second // navigation occurs. scoped_ptr suspended_nav_message_; -- cgit v1.1