win: Implement dialog.showErrorBox

This commit is contained in:
Cheng Zhao 2014-11-05 16:05:11 +08:00
parent 490a12d38a
commit 10e195a444

View file

@ -26,6 +26,10 @@
#include "ui/views/window/native_frame_view.h"
#endif
#if defined(OS_WIN)
#include "ui/base/win/message_box_win.h"
#endif
namespace atom {
namespace {
@ -350,4 +354,10 @@ void ShowMessageBox(NativeWindow* parent_window,
dialog->Show();
}
void ShowErrorBox(const base::string16& title, const base::string16& content) {
#if defined(OS_WIN)
ui::MessageBox(NULL, content, title, MB_OK | MB_ICONERROR | MB_TASKMODAL);
#endif
}
} // namespace atom