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

Side by Side Diff: chrome/browser/gtk/create_application_shortcuts_dialog_gtk.h

Issue 2917015: Linux: fix broken build by forward-declaring GdkPixbuf. (Closed)
Patch Set: Created 10 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698