| Index: chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc b/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc
|
| index c73ed6702a29d7725b046e6eaa552f1ab7925d12..2fda4bedf2332989b0b71d8dbe57686e54220f39 100644
|
| --- a/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/browser/shell_integration.h"
|
| #include "chrome/browser/shell_integration_linux.h"
|
| #include "chrome/browser/ui/gtk/gtk_util.h"
|
| -#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
|
| +#include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| #include "chrome/browser/ui/web_applications/web_app_ui.h"
|
| #include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
|
| #include "chrome/browser/web_applications/web_app.h"
|
| @@ -46,7 +46,7 @@ const int kDescriptionLabelHeightLines = 3;
|
|
|
| // static
|
| void CreateWebApplicationShortcutsDialogGtk::Show(
|
| - GtkWindow* parent, TabContentsWrapper* tab_contents) {
|
| + GtkWindow* parent, TabContents* tab_contents) {
|
| new CreateWebApplicationShortcutsDialogGtk(parent, tab_contents);
|
| }
|
|
|
| @@ -286,7 +286,7 @@ void CreateApplicationShortcutsDialogGtk::OnToggleCheckbox(GtkWidget* sender) {
|
|
|
| CreateWebApplicationShortcutsDialogGtk::CreateWebApplicationShortcutsDialogGtk(
|
| GtkWindow* parent,
|
| - TabContentsWrapper* tab_contents)
|
| + TabContents* tab_contents)
|
| : CreateApplicationShortcutsDialogGtk(parent),
|
| tab_contents_(tab_contents) {
|
|
|
|
|