diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-17 02:49:03 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-17 02:49:03 +0000 |
commit | 9016e4ded1301f0869a2c30779696db56ccea30f (patch) | |
tree | 25550b8b52f4c073c0856b789c7d5fa80c39fdca /chrome/browser/tab_contents.h | |
parent | 3df7b52a11ed8445b6430df5b202d375931d1767 (diff) | |
download | chromium_src-9016e4ded1301f0869a2c30779696db56ccea30f.zip chromium_src-9016e4ded1301f0869a2c30779696db56ccea30f.tar.gz chromium_src-9016e4ded1301f0869a2c30779696db56ccea30f.tar.bz2 |
Remove HWND from TabContents creation.
R=brettw ReviewURL: http://codereview.chromium.org/10967/show
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5554 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents.h')
-rw-r--r-- | chrome/browser/tab_contents.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents.h b/chrome/browser/tab_contents.h index 6f7f592..ebbc47b 100644 --- a/chrome/browser/tab_contents.h +++ b/chrome/browser/tab_contents.h @@ -75,7 +75,6 @@ class TabContents : public PageNavigator { // Creates a new TabContents of the given type. Will reuse the given // instance's renderer, if it is not null. static TabContents* CreateWithType(TabContentsType type, - HWND parent, Profile* profile, SiteInstance* instance); @@ -340,7 +339,7 @@ class TabContents : public PageNavigator { // Tell the subclass to set up the view (e.g. create the container HWND if // applicable) and any other create-time setup. - virtual void CreateView(HWND parent_hwnd, const gfx::Rect& initial_bounds) {} + virtual void CreateView() {} // Returns the HWND associated with this TabContents. Outside of automation // in the context of the UI, this is required to be implemented. |