| Index: chrome/browser/ui/views/simple_message_box_win.cc
|
| diff --git a/chrome/browser/ui/views/simple_message_box_win.cc b/chrome/browser/ui/views/simple_message_box_win.cc
|
| index 1cea29357c5dfd28224bca897d291c24d5a6c359..c769195f4ada1bbafe626335947018e9926ea944 100644
|
| --- a/chrome/browser/ui/views/simple_message_box_win.cc
|
| +++ b/chrome/browser/ui/views/simple_message_box_win.cc
|
| @@ -4,9 +4,7 @@
|
|
|
| #include "chrome/browser/ui/simple_message_box.h"
|
|
|
| -#include "components/startup_metric_utils/startup_metric_utils.h"
|
| #include "ui/base/win/message_box_win.h"
|
| -#include "ui/gfx/win/hwnd_util.h"
|
|
|
| namespace chrome {
|
|
|
| @@ -29,18 +27,4 @@ MessageBoxResult NativeShowMessageBox(HWND parent,
|
| MESSAGE_BOX_RESULT_YES : MESSAGE_BOX_RESULT_NO;
|
| }
|
|
|
| -#if !defined(USE_AURA)
|
| -MessageBoxResult ShowMessageBox(gfx::NativeWindow parent,
|
| - const base::string16& title,
|
| - const base::string16& message,
|
| - MessageBoxType type) {
|
| - startup_metric_utils::SetNonBrowserUIDisplayed();
|
| -
|
| - if (!parent)
|
| - parent = gfx::GetWindowToParentTo(true);
|
| -
|
| - return NativeShowMessageBox(parent, title, message, type);
|
| -}
|
| -#endif
|
| -
|
| } // namespace chrome
|
|
|