| Index: chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc (revision 145357)
|
| +++ chrome/browser/ui/gtk/create_application_shortcuts_dialog_gtk.cc (working copy)
|
| @@ -14,6 +14,7 @@
|
| #include "chrome/browser/shell_integration_linux.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/browser/ui/browser_commands.h"
|
| +#include "chrome/browser/ui/browser_dialogs.h"
|
| #include "chrome/browser/ui/browser_finder.h"
|
| #include "chrome/browser/ui/gtk/gtk_util.h"
|
| #include "chrome/browser/ui/tab_contents/tab_contents.h"
|
| @@ -47,12 +48,15 @@
|
|
|
| } // namespace
|
|
|
| -// static
|
| -void CreateWebApplicationShortcutsDialogGtk::Show(
|
| - GtkWindow* parent, TabContents* tab_contents) {
|
| - new CreateWebApplicationShortcutsDialogGtk(parent, tab_contents);
|
| +namespace chrome {
|
| +
|
| +void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window,
|
| + TabContents* tab_contents) {
|
| + new CreateWebApplicationShortcutsDialogGtk(parent_window, tab_contents);
|
| }
|
|
|
| +} // namespace chrome
|
| +
|
| void CreateChromeApplicationShortcutsDialogGtk::Show(GtkWindow* parent,
|
| Profile* profile,
|
| const Extension* app) {
|
|
|