| 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/printing/print_error_dialog.h" | 5 #include "chrome/browser/printing/print_error_dialog.h" |
| 6 | 6 |
| 7 #include "chrome/browser/ui/simple_message_box.h" | 7 #include "chrome/browser/ui/simple_message_box.h" |
| 8 #include "grit/generated_resources.h" | 8 #include "grit/generated_resources.h" |
| 9 #include "ui/base/l10n/l10n_util.h" | 9 #include "ui/base/l10n/l10n_util.h" |
| 10 | 10 |
| 11 namespace chrome { | 11 namespace chrome { |
| 12 | 12 |
| 13 void ShowPrintErrorDialog(gfx::NativeWindow parent) { | 13 void ShowPrintErrorDialog(gfx::NativeWindow parent) { |
| 14 browser::ShowMessageBox( | 14 ShowMessageBox(parent, |
| 15 parent, | 15 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_TITLE_TEXT), |
| 16 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_TITLE_TEXT), | 16 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_ERROR_TEXT), |
| 17 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_ERROR_TEXT), | 17 MESSAGE_BOX_TYPE_WARNING); |
| 18 browser::MESSAGE_BOX_TYPE_WARNING); | |
| 19 } | 18 } |
| 20 | 19 |
| 21 } // namespace chrome | 20 } // namespace chrome |
| OLD | NEW |