diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-25 21:29:10 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-25 21:29:10 +0000 |
commit | e313f3b11360902a3da9b3b1cc0df2a4792d0867 (patch) | |
tree | 609e260af0138ff982d26f80c22f5beec7e3efc2 /chrome/browser/hang_monitor | |
parent | d5c7934b36545f324df7d2f47527c41653b26771 (diff) | |
download | chromium_src-e313f3b11360902a3da9b3b1cc0df2a4792d0867.zip chromium_src-e313f3b11360902a3da9b3b1cc0df2a4792d0867.tar.gz chromium_src-e313f3b11360902a3da9b3b1cc0df2a4792d0867.tar.bz2 |
Make a new yes/no messagebox wrapper function, use it in the bookmark alert.
Recommitting of r46101.
BUG=http://crbug.com/34481; http://crbug.com/40011
TEST=on Mac/ChromeOS, have at least 15 bookmarks on bookmarks bar or other bookmarks,
right click on one of those and click on Open all bookmarks. A confirmation
dialog box should be shown. No other visible change.
Review URL: http://codereview.chromium.org/1745024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50894 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/hang_monitor')
-rw-r--r-- | chrome/browser/hang_monitor/hung_plugin_action.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/hang_monitor/hung_plugin_action.cc b/chrome/browser/hang_monitor/hung_plugin_action.cc index 5bed393..5fdcfd1 100644 --- a/chrome/browser/hang_monitor/hung_plugin_action.cc +++ b/chrome/browser/hang_monitor/hung_plugin_action.cc @@ -9,6 +9,7 @@ #include "app/l10n_util.h" #include "app/win_util.h" #include "base/win_util.h" +#include "chrome/browser/platform_util.h" #include "chrome/common/logging_chrome.h" #include "grit/generated_resources.h" #include "webkit/glue/plugins/webplugin_delegate_impl.h" @@ -62,8 +63,7 @@ bool HungPluginAction::OnHungWindowDetected(HWND hung_window, HungWindowResponseCallback, reinterpret_cast<ULONG_PTR>(this)); current_hung_plugin_window_ = hung_window; - const UINT mb_flags = MB_YESNO | MB_ICONQUESTION | MB_SETFOREGROUND; - if (IDYES == win_util::MessageBox(NULL, msg, title, mb_flags)) { + if (platform_util::SimpleYesNoBox(NULL, title, msg)) { *action = HungWindowNotification::HUNG_WINDOW_TERMINATE_PROCESS; } else { // If the user choses to ignore the hung window warning, the |