Index: content/shell/shell_javascript_dialog.h |
diff --git a/content/shell/shell_javascript_dialog.h b/content/shell/shell_javascript_dialog.h |
index 32d425dfffe3e617e90c62dd5c9ee2c620c3abfb..ab08091868efd2c5dbb65d2094e6a8e04efb99c0 100644 |
--- a/content/shell/shell_javascript_dialog.h |
+++ b/content/shell/shell_javascript_dialog.h |
@@ -42,7 +42,14 @@ class ShellJavaScriptDialog { |
#if defined(OS_MACOSX) |
ShellJavaScriptDialogHelper* helper_; // owned |
NSAlert* alert_; // weak, owned by |helper_|. |
-#endif // defined(OS_MACOSX) |
+#elif defined(OS_WIN) |
+ ui::JavascriptMessageType message_type_; |
+ HWND dialog_win_; |
+ string16 message_text_; |
+ string16 default_prompt_text_; |
+ static INT_PTR CALLBACK DialogProc(HWND hDlg, UINT msg, WPARAM wParam, |
jam
2012/03/29 17:16:13
nit: here too
|
+ LPARAM lParam); |
+#endif |
DISALLOW_COPY_AND_ASSIGN(ShellJavaScriptDialog); |
}; |