| Index: chrome/browser/extensions/extension_tab_helper_delegate.h
|
| diff --git a/chrome/browser/extensions/extension_tab_helper_delegate.h b/chrome/browser/extensions/extension_tab_helper_delegate.h
|
| index e7b082747809af7e63730c803b0da54d0a787696..212da52a43e21a25cc16c7f0e849fae173450061 100644
|
| --- a/chrome/browser/extensions/extension_tab_helper_delegate.h
|
| +++ b/chrome/browser/extensions/extension_tab_helper_delegate.h
|
| @@ -9,7 +9,6 @@
|
| #include "base/basictypes.h"
|
|
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
| struct WebApplicationInfo;
|
|
|
| // Objects implement this interface to get notified about changes in the
|
| @@ -17,11 +16,11 @@ struct WebApplicationInfo;
|
| class ExtensionTabHelperDelegate {
|
| public:
|
| // Notification that a user's request to install an application has completed.
|
| - virtual void OnDidGetApplicationInfo(TabContentsWrapper* source,
|
| + virtual void OnDidGetApplicationInfo(TabContents* source,
|
| int32 page_id);
|
|
|
| // Notification when an application programmatically requests installation.
|
| - virtual void OnInstallApplication(TabContentsWrapper* source,
|
| + virtual void OnInstallApplication(TabContents* source,
|
| const WebApplicationInfo& app_info);
|
| protected:
|
| virtual ~ExtensionTabHelperDelegate();
|
|
|