diff options
author | kuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-09 17:37:13 +0000 |
---|---|---|
committer | kuchhal@chromium.org <kuchhal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-09 17:37:13 +0000 |
commit | 68fd131d06eec40cc25b343998da4f4db2238a90 (patch) | |
tree | 95f525511a44859ab44f25ac78a91667264f3010 /chrome/browser/external_tab_container.h | |
parent | 14a44b089e452259571a5e0ad2ea9c6cfd1f920b (diff) | |
download | chromium_src-68fd131d06eec40cc25b343998da4f4db2238a90.zip chromium_src-68fd131d06eec40cc25b343998da4f4db2238a90.tar.gz chromium_src-68fd131d06eec40cc25b343998da4f4db2238a90.tar.bz2 |
Reverting 9388 to see if this fixes ui tests.
TBR=tommi
Review URL: http://codereview.chromium.org/20179
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_tab_container.h')
-rw-r--r-- | chrome/browser/external_tab_container.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/chrome/browser/external_tab_container.h b/chrome/browser/external_tab_container.h index 29c0d81..b09f032 100644 --- a/chrome/browser/external_tab_container.h +++ b/chrome/browser/external_tab_container.h @@ -39,7 +39,6 @@ class ExternalTabContainer : public TabContentsDelegate, public: BEGIN_MSG_MAP(ExternalTabContainer) MESSAGE_HANDLER(WM_SIZE, OnSize) - MESSAGE_HANDLER(WM_SETFOCUS, OnSetFocus) MSG_WM_DESTROY(OnDestroy) END_MSG_MAP() @@ -115,9 +114,6 @@ class ExternalTabContainer : public TabContentsDelegate, // message it did not process void ProcessUnhandledAccelerator(const MSG& msg); - // See TabContents::SetInitialFocus - void SetInitialFocus(bool reverse); - // A helper method that tests whether the given window is an // ExternalTabContainer window static bool IsExternalTabContainer(HWND window); @@ -128,13 +124,11 @@ class ExternalTabContainer : public TabContentsDelegate, protected: LRESULT OnSize(UINT, WPARAM, LPARAM, BOOL& handled); - LRESULT OnSetFocus(UINT msg, WPARAM wp, LPARAM lp, BOOL& handled); - void OnDestroy(); void OnFinalMessage(HWND window); protected: - TabContents* tab_contents_; + TabContents *tab_contents_; AutomationProvider* automation_; NotificationRegistrar registrar_; |