| 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 1e4ded2bf7f10b5b4b2b6d67054dd7198a0ceefa..fdefc5fbe231e2962b6ca86d92636c665df70ef0 100644
|
| --- a/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h
|
| +++ b/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h
|
| @@ -22,10 +22,13 @@ typedef struct _GdkPixbuf GdkPixbuf;
|
| typedef struct _GtkWidget GtkWidget;
|
| typedef struct _GtkWindow GtkWindow;
|
|
|
| -class Extension;
|
| class Profile;
|
| class TabContentsWrapper;
|
|
|
| +namespace extensions{
|
| +class Extension;
|
| +}
|
| +
|
| class CreateApplicationShortcutsDialogGtk
|
| : public base::RefCountedThreadSafe<CreateApplicationShortcutsDialogGtk,
|
| BrowserThread::DeleteOnUIThread> {
|
| @@ -102,11 +105,12 @@ class CreateChromeApplicationShortcutsDialogGtk
|
| public ImageLoadingTracker::Observer {
|
| public:
|
| // Displays the dialog box to create application shortcuts for |app|.
|
| - static void Show(GtkWindow* parent, Profile* profile, const Extension* app);
|
| + static void Show(GtkWindow* parent, Profile* profile,
|
| + const extensions::Extension* app);
|
|
|
| CreateChromeApplicationShortcutsDialogGtk(GtkWindow* parent,
|
| Profile* profile,
|
| - const Extension* app);
|
| + const extensions::Extension* app);
|
| virtual ~CreateChromeApplicationShortcutsDialogGtk() {}
|
|
|
| // Implement ImageLoadingTracker::Observer. |tracker_| is used to
|
| @@ -121,7 +125,7 @@ class CreateChromeApplicationShortcutsDialogGtk
|
| const ShellIntegration::ShortcutInfo& shortcut_info) OVERRIDE;
|
|
|
| private:
|
| - const Extension* app_;
|
| + const extensions::Extension* app_;
|
| FilePath profile_path_;
|
| ImageLoadingTracker tracker_;
|
| DISALLOW_COPY_AND_ASSIGN(CreateChromeApplicationShortcutsDialogGtk);
|
|
|