summaryrefslogtreecommitdiffstats
path: root/chrome/browser/app_modal_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/app_modal_dialog.h')
-rw-r--r--chrome/browser/app_modal_dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/app_modal_dialog.h b/chrome/browser/app_modal_dialog.h
index 31b637b..bbb352a 100644
--- a/chrome/browser/app_modal_dialog.h
+++ b/chrome/browser/app_modal_dialog.h
@@ -14,9 +14,6 @@
#if defined(OS_WIN)
class JavascriptMessageBoxDialog;
typedef JavascriptMessageBoxDialog* NativeDialog;
-#elif defined(OS_LINUX)
-typedef struct _GtkWidget GtkWidget;
-typedef GtkWidget* NativeDialog;
#elif defined(OS_MACOSX)
#if __OBJC__
@class NSAlert;
@@ -24,6 +21,9 @@ typedef GtkWidget* NativeDialog;
class NSAlert;
#endif
typedef NSAlert* NativeDialog;
+#elif defined(OS_POSIX)
+typedef struct _GtkWidget GtkWidget;
+typedef GtkWidget* NativeDialog;
#endif
class ExtensionHost;