Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(897)

Unified Diff: chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.h

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 01de16c1076efc2dbf1bff9245fa48602c09ffde..6253f8be0441d787dac47141fd7af18f247b0669 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> {
@@ -103,11 +106,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);
// Implement ImageLoadingTracker::Observer. |tracker_| is used to
// load the app's icon. This method recieves the icon, and adds
@@ -123,7 +127,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);
« no previous file with comments | « chrome/browser/ui/gtk/browser_window_gtk.cc ('k') | chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698