diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-20 00:04:51 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-20 00:04:51 +0000 |
commit | 6934a70facaac1c8f400f0740a3e6fe9697bb4a8 (patch) | |
tree | fed96e821d5499f078a5378e985a7745755d1f75 /chrome/browser/external_tab_container_win.cc | |
parent | 95c60794f0b0122930b441df82eac8235e4e33ec (diff) | |
download | chromium_src-6934a70facaac1c8f400f0740a3e6fe9697bb4a8.zip chromium_src-6934a70facaac1c8f400f0740a3e6fe9697bb4a8.tar.gz chromium_src-6934a70facaac1c8f400f0740a3e6fe9697bb4a8.tar.bz2 |
Start creating the content::WebPage interface around TabContents. This is just the start of moving 4 very commonly used unix_hacker functions into CamelCase. I've added the interface with just these methods, it's not actually used yet.
The long term plan is that TabContentsWrapper would become TabContents, while TabContents will become WebPageImpl
BUG=98716
Review URL: http://codereview.chromium.org/8997020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115043 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_tab_container_win.cc')
-rw-r--r-- | chrome/browser/external_tab_container_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/external_tab_container_win.cc b/chrome/browser/external_tab_container_win.cc index 094e6b9..603df3d 100644 --- a/chrome/browser/external_tab_container_win.cc +++ b/chrome/browser/external_tab_container_win.cc @@ -180,7 +180,7 @@ bool ExternalTabContainer::Init(Profile* profile, if (!infobars_enabled) tab_contents_->infobar_tab_helper()->set_infobars_enabled(false); - tab_contents_->tab_contents()->set_delegate(this); + tab_contents_->tab_contents()->SetDelegate(this); tab_contents_->tab_contents()-> GetMutableRendererPrefs()->browser_handles_top_level_requests = |