| Index: chrome/browser/sessions/session_service.h
|
| diff --git a/chrome/browser/sessions/session_service.h b/chrome/browser/sessions/session_service.h
|
| index 7381d9e419d9b5ab08ccd22140292ffdb0ac08e3..f923ebac6be7c9508fcad7ef35c50035fa776d98 100644
|
| --- a/chrome/browser/sessions/session_service.h
|
| +++ b/chrome/browser/sessions/session_service.h
|
| @@ -24,7 +24,6 @@
|
| class Profile;
|
| class SessionCommand;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
| struct SessionTab;
|
| struct SessionWindow;
|
|
|
| @@ -157,7 +156,7 @@ class SessionService : public BaseSessionService,
|
|
|
| // Notification that a tab has restored its entries or a closed tab is being
|
| // reused.
|
| - void TabRestored(TabContentsWrapper* tab, bool pinned);
|
| + void TabRestored(TabContents* tab, bool pinned);
|
|
|
| // Sets the index of the selected entry in the navigation controller for the
|
| // specified tab.
|
| @@ -327,7 +326,7 @@ class SessionService : public BaseSessionService,
|
| // indices that were written.
|
| void BuildCommandsForTab(
|
| const SessionID& window_id,
|
| - TabContentsWrapper* tab,
|
| + TabContents* tab,
|
| int index_in_window,
|
| bool is_pinned,
|
| std::vector<SessionCommand*>* commands,
|
|
|