OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ |
6 #define CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ | 6 #define CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ |
7 | 7 |
8 #include "app/gtk_signal.h" | 8 #include "app/gtk_signal.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 const ShellIntegration::ShortcutInfo& shortcut_info); | 47 const ShellIntegration::ShortcutInfo& shortcut_info); |
48 void ShowErrorDialog(); | 48 void ShowErrorDialog(); |
49 | 49 |
50 // UI elements. | 50 // UI elements. |
51 GtkWidget* desktop_checkbox_; | 51 GtkWidget* desktop_checkbox_; |
52 GtkWidget* menu_checkbox_; | 52 GtkWidget* menu_checkbox_; |
53 | 53 |
54 // TabContents for which the shortcut will be created. | 54 // TabContents for which the shortcut will be created. |
55 TabContents* tab_contents_; | 55 TabContents* tab_contents_; |
56 | 56 |
| 57 // ShortcutInfo for the new shortcut. |
| 58 ShellIntegration::ShortcutInfo shortcut_info_; |
| 59 |
| 60 // Image associated with the site. |
| 61 GdkPixbuf* favicon_pixbuf_; |
| 62 |
57 // Dialog box that allows the user to create an application shortcut. | 63 // Dialog box that allows the user to create an application shortcut. |
58 GtkWidget* create_dialog_; | 64 GtkWidget* create_dialog_; |
59 | 65 |
60 // Dialog box that shows the error message. | 66 // Dialog box that shows the error message. |
61 GtkWidget* error_dialog_; | 67 GtkWidget* error_dialog_; |
62 | 68 |
63 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutsDialogGtk); | 69 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutsDialogGtk); |
64 }; | 70 }; |
65 | 71 |
66 #endif // CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ | 72 #endif // CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ |
OLD | NEW |