| Index: chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h
|
| diff --git a/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h b/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h
|
| index 3cc23ffd874e0ba7d09a9a58f9ec3bf4e1168ec6..bd63594770a7c5c3aa5108b57a3090c099c00b2c 100644
|
| --- a/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h
|
| +++ b/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h
|
| @@ -24,7 +24,6 @@ typedef struct _GtkWindow GtkWindow;
|
|
|
| class Profile;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| namespace extensions{
|
| class Extension;
|
| @@ -85,10 +84,10 @@ class CreateWebApplicationShortcutsDialogGtk
|
| : public CreateApplicationShortcutsDialogGtk {
|
| public:
|
| // Displays the dialog box to create application shortcuts for |tab_contents|.
|
| - static void Show(GtkWindow* parent, TabContentsWrapper* tab_contents);
|
| + static void Show(GtkWindow* parent, TabContents* tab_contents);
|
|
|
| CreateWebApplicationShortcutsDialogGtk(GtkWindow* parent,
|
| - TabContentsWrapper* tab_contents);
|
| + TabContents* tab_contents);
|
|
|
| virtual void OnCreatedShortcut(void) OVERRIDE;
|
|
|
| @@ -96,8 +95,8 @@ class CreateWebApplicationShortcutsDialogGtk
|
| virtual ~CreateWebApplicationShortcutsDialogGtk() {}
|
|
|
| private:
|
| - // TabContentsWrapper for which the shortcut will be created.
|
| - TabContentsWrapper* tab_contents_;
|
| + // TabContents for which the shortcut will be created.
|
| + TabContents* tab_contents_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CreateWebApplicationShortcutsDialogGtk);
|
| };
|
|
|