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" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "chrome/browser/chrome_thread.h" | 12 #include "chrome/browser/chrome_thread.h" |
13 #include "chrome/browser/shell_integration.h" | 13 #include "chrome/browser/shell_integration.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 | 15 |
| 16 typedef struct _GdkPixbuf GdkPixbuf; |
16 typedef struct _GtkWidget GtkWidget; | 17 typedef struct _GtkWidget GtkWidget; |
17 typedef struct _GtkWindow GtkWindow; | 18 typedef struct _GtkWindow GtkWindow; |
18 | 19 |
19 class TabContents; | 20 class TabContents; |
20 | 21 |
21 class CreateApplicationShortcutsDialogGtk | 22 class CreateApplicationShortcutsDialogGtk |
22 : public base::RefCountedThreadSafe<CreateApplicationShortcutsDialogGtk, | 23 : public base::RefCountedThreadSafe<CreateApplicationShortcutsDialogGtk, |
23 ChromeThread::DeleteOnUIThread> { | 24 ChromeThread::DeleteOnUIThread> { |
24 public: | 25 public: |
25 // Displays the dialog box to create application shortcuts for |tab_contents|. | 26 // Displays the dialog box to create application shortcuts for |tab_contents|. |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 // Dialog box that allows the user to create an application shortcut. | 63 // Dialog box that allows the user to create an application shortcut. |
63 GtkWidget* create_dialog_; | 64 GtkWidget* create_dialog_; |
64 | 65 |
65 // Dialog box that shows the error message. | 66 // Dialog box that shows the error message. |
66 GtkWidget* error_dialog_; | 67 GtkWidget* error_dialog_; |
67 | 68 |
68 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutsDialogGtk); | 69 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutsDialogGtk); |
69 }; | 70 }; |
70 | 71 |
71 #endif // CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ | 72 #endif // CHROME_BROWSER_GTK_CREATE_APPLICATION_SHORTCUTS_DIALOG_GTK_H_ |
OLD | NEW |