diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 07:58:34 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-04 07:58:34 +0000 |
commit | 57c6a6579cf274fe37d6196931a3034d90da7113 (patch) | |
tree | ec42313580156ccc039b5fee714ee12259cb08ee /chrome/browser/tab_contents/navigation_controller.h | |
parent | b23c9e1f05d474adc327c85d87eacc77554976e0 (diff) | |
download | chromium_src-57c6a6579cf274fe37d6196931a3034d90da7113.zip chromium_src-57c6a6579cf274fe37d6196931a3034d90da7113.tar.gz chromium_src-57c6a6579cf274fe37d6196931a3034d90da7113.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/tab_contents/navigation_controller.h')
-rw-r--r-- | chrome/browser/tab_contents/navigation_controller.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/navigation_controller.h b/chrome/browser/tab_contents/navigation_controller.h index e42f4ad..015bdaa 100644 --- a/chrome/browser/tab_contents/navigation_controller.h +++ b/chrome/browser/tab_contents/navigation_controller.h @@ -23,7 +23,7 @@ class Profile; class TabContents; class SiteInstance; class SkBitmap; -class WebContents; +class TabContents; class TabContentsCollector; class TabNavigation; struct ViewHostMsg_FrameNavigate_Params; @@ -293,7 +293,7 @@ class NavigationController { // For use by TabContents ---------------------------------------------------- // Handles updating the navigation state after the renderer has navigated. - // This is used by the WebContents. Simpler tab contents types can use + // This is used by the TabContents. Simpler tab contents types can use // CommitPendingEntry below. // // If a new entry is created, it will return true and will have filled the @@ -471,7 +471,7 @@ class NavigationController { TabContents* tab_contents_; // The max restored page ID in this controller, if it was restored. We must - // store this so that WebContents can tell any renderer in charge of one of + // store this so that TabContents can tell any renderer in charge of one of // the restored entries to update its max page ID. int max_restored_page_id_; |