| 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..1ef0ef3e85734ecc9ac90785fac265886cd12e72 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 dlg_win_;
|
| + string16 message_text_;
|
| + string16 default_prompt_text_;
|
| + static INT_PTR CALLBACK DialogProc(HWND hDlg, UINT msg, WPARAM wParam,
|
| + LPARAM lParam);
|
| +#endif
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ShellJavaScriptDialog);
|
| };
|
|
|