Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: chrome/browser/printing/print_error_dialog.cc

Issue 194383002: Show dialog as separate post task. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/browser_finder.h"
8 #include "chrome/browser/ui/browser_window.h"
7 #include "chrome/browser/ui/simple_message_box.h" 9 #include "chrome/browser/ui/simple_message_box.h"
10 #include "content/public/browser/browser_thread.h"
8 #include "grit/generated_resources.h" 11 #include "grit/generated_resources.h"
9 #include "ui/base/l10n/l10n_util.h" 12 #include "ui/base/l10n/l10n_util.h"
10 13
11 namespace chrome { 14 namespace chrome {
12 15
13 void ShowPrintErrorDialog(gfx::NativeWindow parent) { 16 namespace {
14 ShowMessageBox(parent, 17
18 void ShowPrintErrorDialogTask() {
19 Browser* browser = chrome::FindLastActiveWithHostDesktopType(
20 chrome::GetActiveDesktop());
21 ShowMessageBox(browser ? browser->window()->GetNativeWindow() : NULL,
15 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_TITLE_TEXT), 22 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_TITLE_TEXT),
16 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_ERROR_TEXT), 23 l10n_util::GetStringUTF16(IDS_PRINT_SPOOL_FAILED_ERROR_TEXT),
17 MESSAGE_BOX_TYPE_WARNING); 24 MESSAGE_BOX_TYPE_WARNING);
18 } 25 }
19 26
27 } // namespace
28
29 void ShowPrintErrorDialog() {
30 // Nested loop may destroy caller.
31 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
32 base::Bind(&ShowPrintErrorDialogTask));
33 }
34
20 } // namespace chrome 35 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_error_dialog.h ('k') | chrome/browser/printing/print_view_manager_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698