| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/simple_message_box.h" | 5 #include "chrome/browser/ui/simple_message_box.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/run_loop.h" | 10 #include "base/run_loop.h" |
| 11 #include "chrome/grit/generated_resources.h" | 11 #include "chrome/grit/generated_resources.h" |
| 12 #include "components/constrained_window/constrained_window_views.h" | 12 #include "components/constrained_window/constrained_window_views.h" |
| 13 #include "ui/aura/window.h" | |
| 14 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 15 #include "ui/base/resource/resource_bundle.h" | 14 #include "ui/base/resource/resource_bundle.h" |
| 16 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
| 17 #include "ui/views/controls/message_box_view.h" | 16 #include "ui/views/controls/message_box_view.h" |
| 18 #include "ui/views/widget/widget.h" | 17 #include "ui/views/widget/widget.h" |
| 19 #include "ui/views/window/dialog_delegate.h" | 18 #include "ui/views/window/dialog_delegate.h" |
| 20 | 19 |
| 21 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
| 22 #include "ui/base/win/message_box_win.h" | 21 #include "ui/base/win/message_box_win.h" |
| 23 #include "ui/views/win/hwnd_util.h" | 22 #include "ui/views/win/hwnd_util.h" |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 MessageBoxResult ShowMessageBoxWithButtonText(gfx::NativeWindow parent, | 254 MessageBoxResult ShowMessageBoxWithButtonText(gfx::NativeWindow parent, |
| 256 const base::string16& title, | 255 const base::string16& title, |
| 257 const base::string16& message, | 256 const base::string16& message, |
| 258 const base::string16& yes_text, | 257 const base::string16& yes_text, |
| 259 const base::string16& no_text) { | 258 const base::string16& no_text) { |
| 260 return ShowMessageBoxImpl( | 259 return ShowMessageBoxImpl( |
| 261 parent, title, message, MESSAGE_BOX_TYPE_QUESTION, yes_text, no_text); | 260 parent, title, message, MESSAGE_BOX_TYPE_QUESTION, yes_text, no_text); |
| 262 } | 261 } |
| 263 | 262 |
| 264 } // namespace chrome | 263 } // namespace chrome |
| OLD | NEW |