From d870855645a53b94b493d0ddf65f0f19eff0bcd5 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 4 Jul 2013 15:30:48 +0800 Subject: [PATCH] Implement simple Beep() on Windows. --- common/platform_util_win.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/common/platform_util_win.cc b/common/platform_util_win.cc index 3735999a0265..e00655796917 100644 --- a/common/platform_util_win.cc +++ b/common/platform_util_win.cc @@ -180,6 +180,7 @@ void MoveItemToTrash(const base::FilePath& path) { } void Beep() { + MessageBeep(MB_OK); } } // namespace platform_util