| Index: chrome/browser/instant/instant_unload_handler.h
|
| diff --git a/chrome/browser/instant/instant_unload_handler.h b/chrome/browser/instant/instant_unload_handler.h
|
| index 1b2648cb92ef566d58ba55a7ab4b11c82a1c6640..991f84fb7ffd8ac69517b724ab8adac3b8619a6d 100644
|
| --- a/chrome/browser/instant/instant_unload_handler.h
|
| +++ b/chrome/browser/instant/instant_unload_handler.h
|
| @@ -10,11 +10,10 @@
|
|
|
| class Browser;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| // InstantUnloadHandler makes sure the before unload and unload handler is run
|
| // when using instant. When the user commits the instant preview the existing
|
| -// TabContentsWrapper is passed to |RunUnloadListenersOrDestroy|. If the tab has
|
| +// TabContents is passed to |RunUnloadListenersOrDestroy|. If the tab has
|
| // no before unload or unload listener the tab is deleted, otherwise the before
|
| // unload and unload listener is executed. If the before unload listener shows a
|
| // dialog the tab is added back to the tabstrip at its original location next to
|
| @@ -25,7 +24,7 @@ class InstantUnloadHandler {
|
| ~InstantUnloadHandler();
|
|
|
| // See class description for details on what this does.
|
| - void RunUnloadListenersOrDestroy(TabContentsWrapper* tab_contents, int index);
|
| + void RunUnloadListenersOrDestroy(TabContents* tab_contents, int index);
|
|
|
| private:
|
| class TabContentsDelegateImpl;
|
|
|