| Index: chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
|
| diff --git a/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h b/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
|
| index 36614fd8f970036ab62c8c67f7856389c3fa0ad4..704f68e456d47e3dce2da464b7c5790c317ecd4c 100644
|
| --- a/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
|
| +++ b/chrome/browser/ui/tab_contents/core_tab_helper_delegate.h
|
| @@ -9,18 +9,17 @@
|
| #include "base/basictypes.h"
|
|
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| // Objects implement this interface to get notified about changes in the
|
| -// TabContentsWrapper and to provide necessary functionality.
|
| +// TabContents and to provide necessary functionality.
|
| //
|
| -// This is considered part of the TabContentsWrapper "core" interface. If a
|
| -// piece of code interacts with TabContentWrappers, it is guaranteed that it
|
| -// will need to handle all of these callbacks.
|
| +// This is considered part of the TabContents "core" interface. If a piece of
|
| +// code interacts with TabContent, it is guaranteed that it will need to handle
|
| +// all of these callbacks.
|
| class CoreTabHelperDelegate {
|
| public:
|
| - virtual void SwapTabContents(TabContentsWrapper* old_tc,
|
| - TabContentsWrapper* new_tc) = 0;
|
| + virtual void SwapTabContents(TabContents* old_tc,
|
| + TabContents* new_tc) = 0;
|
|
|
| protected:
|
| virtual ~CoreTabHelperDelegate();
|
|
|