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

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

Issue 10545115: TabContentsWrapper -> TabContents, part 41. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 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);
};
« no previous file with comments | « chrome/browser/ui/gtk/constrained_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