Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / printing / printing_context_win.cc
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
3 // found in the LICENSE file.
4
5 #include "printing/printing_context_win.h"
6
7 #include <winspool.h>
8
9 #include <algorithm>
10
11 #include "base/i18n/file_util_icu.h"
12 #include "base/i18n/time_formatting.h"
13 #include "base/message_loop/message_loop.h"
14 #include "base/metrics/histogram.h"
15 #include "base/strings/utf_string_conversions.h"
16 #include "base/time/time.h"
17 #include "base/values.h"
18 #include "printing/backend/print_backend.h"
19 #include "printing/backend/printing_info_win.h"
20 #include "printing/backend/win_helper.h"
21 #include "printing/print_job_constants.h"
22 #include "printing/print_settings_initializer_win.h"
23 #include "printing/printed_document.h"
24 #include "printing/printing_utils.h"
25 #include "printing/units.h"
26 #include "skia/ext/platform_device.h"
27
28 #if defined(USE_AURA)
29 #include "ui/aura/remote_window_tree_host_win.h"
30 #include "ui/aura/window.h"
31 #include "ui/aura/window_event_dispatcher.h"
32 #endif
33
34 using base::Time;
35
36 namespace {
37
38 HWND GetRootWindow(gfx::NativeView view) {
39   HWND window = NULL;
40 #if defined(USE_AURA)
41   if (view)
42     window = view->GetHost()->GetAcceleratedWidget();
43 #else
44   if (view && IsWindow(view)) {
45     window = GetAncestor(view, GA_ROOTOWNER);
46   }
47 #endif
48   if (!window) {
49     // TODO(maruel):  bug 1214347 Get the right browser window instead.
50     return GetDesktopWindow();
51   }
52   return window;
53 }
54
55 }  // anonymous namespace
56
57 namespace printing {
58
59 class PrintingContextWin::CallbackHandler : public IPrintDialogCallback,
60                                             public IObjectWithSite {
61  public:
62   CallbackHandler(PrintingContextWin& owner, HWND owner_hwnd)
63       : owner_(owner),
64         owner_hwnd_(owner_hwnd),
65         services_(NULL) {
66   }
67
68   ~CallbackHandler() {
69     if (services_)
70       services_->Release();
71   }
72
73   IUnknown* ToIUnknown() {
74     return static_cast<IUnknown*>(static_cast<IPrintDialogCallback*>(this));
75   }
76
77   // IUnknown
78   virtual HRESULT WINAPI QueryInterface(REFIID riid, void**object) {
79     if (riid == IID_IUnknown) {
80       *object = ToIUnknown();
81     } else if (riid == IID_IPrintDialogCallback) {
82       *object = static_cast<IPrintDialogCallback*>(this);
83     } else if (riid == IID_IObjectWithSite) {
84       *object = static_cast<IObjectWithSite*>(this);
85     } else {
86       return E_NOINTERFACE;
87     }
88     return S_OK;
89   }
90
91   // No real ref counting.
92   virtual ULONG WINAPI AddRef() {
93     return 1;
94   }
95   virtual ULONG WINAPI Release() {
96     return 1;
97   }
98
99   // IPrintDialogCallback methods
100   virtual HRESULT WINAPI InitDone() {
101     return S_OK;
102   }
103
104   virtual HRESULT WINAPI SelectionChange() {
105     if (services_) {
106       // TODO(maruel): Get the devmode for the new printer with
107       // services_->GetCurrentDevMode(&devmode, &size), send that information
108       // back to our client and continue. The client needs to recalculate the
109       // number of rendered pages and send back this information here.
110     }
111     return S_OK;
112   }
113
114   virtual HRESULT WINAPI HandleMessage(HWND dialog,
115                                        UINT message,
116                                        WPARAM wparam,
117                                        LPARAM lparam,
118                                        LRESULT* result) {
119     // Cheap way to retrieve the window handle.
120     if (!owner_.dialog_box_) {
121       // The handle we receive is the one of the groupbox in the General tab. We
122       // need to get the grand-father to get the dialog box handle.
123       owner_.dialog_box_ = GetAncestor(dialog, GA_ROOT);
124       // Trick to enable the owner window. This can cause issues with navigation
125       // events so it may have to be disabled if we don't fix the side-effects.
126       EnableWindow(owner_hwnd_, TRUE);
127     }
128     return S_FALSE;
129   }
130
131   virtual HRESULT WINAPI SetSite(IUnknown* site) {
132     if (!site) {
133       DCHECK(services_);
134       services_->Release();
135       services_ = NULL;
136       // The dialog box is destroying, PrintJob::Worker don't need the handle
137       // anymore.
138       owner_.dialog_box_ = NULL;
139     } else {
140       DCHECK(services_ == NULL);
141       HRESULT hr = site->QueryInterface(IID_IPrintDialogServices,
142                                         reinterpret_cast<void**>(&services_));
143       DCHECK(SUCCEEDED(hr));
144     }
145     return S_OK;
146   }
147
148   virtual HRESULT WINAPI GetSite(REFIID riid, void** site) {
149     return E_NOTIMPL;
150   }
151
152  private:
153   PrintingContextWin& owner_;
154   HWND owner_hwnd_;
155   IPrintDialogServices* services_;
156
157   DISALLOW_COPY_AND_ASSIGN(CallbackHandler);
158 };
159
160 // static
161 PrintingContext* PrintingContext::Create(const std::string& app_locale) {
162   return static_cast<PrintingContext*>(new PrintingContextWin(app_locale));
163 }
164
165 PrintingContextWin::PrintingContextWin(const std::string& app_locale)
166     : PrintingContext(app_locale), context_(NULL), dialog_box_(NULL) {}
167
168 PrintingContextWin::~PrintingContextWin() {
169   ReleaseContext();
170 }
171
172 void PrintingContextWin::AskUserForSettings(
173     gfx::NativeView view, int max_pages, bool has_selection,
174     const PrintSettingsCallback& callback) {
175   DCHECK(!in_print_job_);
176   dialog_box_dismissed_ = false;
177
178   HWND window = GetRootWindow(view);
179   DCHECK(window);
180
181   // Show the OS-dependent dialog box.
182   // If the user press
183   // - OK, the settings are reset and reinitialized with the new settings. OK is
184   //   returned.
185   // - Apply then Cancel, the settings are reset and reinitialized with the new
186   //   settings. CANCEL is returned.
187   // - Cancel, the settings are not changed, the previous setting, if it was
188   //   initialized before, are kept. CANCEL is returned.
189   // On failure, the settings are reset and FAILED is returned.
190   PRINTDLGEX dialog_options = { sizeof(PRINTDLGEX) };
191   dialog_options.hwndOwner = window;
192   // Disable options we don't support currently.
193   // TODO(maruel):  Reuse the previously loaded settings!
194   dialog_options.Flags = PD_RETURNDC | PD_USEDEVMODECOPIESANDCOLLATE  |
195                          PD_NOCURRENTPAGE | PD_HIDEPRINTTOFILE;
196   if (!has_selection)
197     dialog_options.Flags |= PD_NOSELECTION;
198
199   PRINTPAGERANGE ranges[32];
200   dialog_options.nStartPage = START_PAGE_GENERAL;
201   if (max_pages) {
202     // Default initialize to print all the pages.
203     memset(ranges, 0, sizeof(ranges));
204     ranges[0].nFromPage = 1;
205     ranges[0].nToPage = max_pages;
206     dialog_options.nPageRanges = 1;
207     dialog_options.nMaxPageRanges = arraysize(ranges);
208     dialog_options.nMinPage = 1;
209     dialog_options.nMaxPage = max_pages;
210     dialog_options.lpPageRanges = ranges;
211   } else {
212     // No need to bother, we don't know how many pages are available.
213     dialog_options.Flags |= PD_NOPAGENUMS;
214   }
215
216   if (ShowPrintDialog(&dialog_options) != S_OK) {
217     ResetSettings();
218     callback.Run(FAILED);
219   }
220
221   // TODO(maruel):  Support PD_PRINTTOFILE.
222   callback.Run(ParseDialogResultEx(dialog_options));
223 }
224
225 PrintingContext::Result PrintingContextWin::UseDefaultSettings() {
226   DCHECK(!in_print_job_);
227
228   PRINTDLG dialog_options = { sizeof(PRINTDLG) };
229   dialog_options.Flags = PD_RETURNDC | PD_RETURNDEFAULT;
230   if (PrintDlg(&dialog_options))
231     return ParseDialogResult(dialog_options);
232
233   // No default printer configured, do we have any printers at all?
234   DWORD bytes_needed = 0;
235   DWORD count_returned = 0;
236   (void)::EnumPrinters(PRINTER_ENUM_LOCAL|PRINTER_ENUM_CONNECTIONS,
237                        NULL, 2, NULL, 0, &bytes_needed, &count_returned);
238   if (bytes_needed) {
239     DCHECK_GE(bytes_needed, count_returned * sizeof(PRINTER_INFO_2));
240     scoped_ptr<BYTE[]> printer_info_buffer(new BYTE[bytes_needed]);
241     BOOL ret = ::EnumPrinters(PRINTER_ENUM_LOCAL|PRINTER_ENUM_CONNECTIONS,
242                               NULL, 2, printer_info_buffer.get(),
243                               bytes_needed, &bytes_needed,
244                               &count_returned);
245     if (ret && count_returned) {  // have printers
246       // Open the first successfully found printer.
247       const PRINTER_INFO_2* info_2 =
248           reinterpret_cast<PRINTER_INFO_2*>(printer_info_buffer.get());
249       const PRINTER_INFO_2* info_2_end = info_2 + count_returned;
250       for (; info_2 < info_2_end; ++info_2) {
251         ScopedPrinterHandle printer;
252         if (!printer.OpenPrinter(info_2->pPrinterName))
253           continue;
254         scoped_ptr<DEVMODE, base::FreeDeleter> dev_mode =
255             CreateDevMode(printer, NULL);
256         if (!dev_mode || !AllocateContext(info_2->pPrinterName, dev_mode.get(),
257                                           &context_)) {
258           continue;
259         }
260         if (InitializeSettings(*dev_mode.get(), info_2->pPrinterName, NULL, 0,
261                                false)) {
262           return OK;
263         }
264         ReleaseContext();
265       }
266       if (context_)
267         return OK;
268     }
269   }
270
271   ResetSettings();
272   return FAILED;
273 }
274
275 gfx::Size PrintingContextWin::GetPdfPaperSizeDeviceUnits() {
276   // Default fallback to Letter size.
277   gfx::SizeF paper_size(kLetterWidthInch, kLetterHeightInch);
278
279   // Get settings from locale. Paper type buffer length is at most 4.
280   const int paper_type_buffer_len = 4;
281   wchar_t paper_type_buffer[paper_type_buffer_len] = {0};
282   GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_IPAPERSIZE, paper_type_buffer,
283                 paper_type_buffer_len);
284   if (wcslen(paper_type_buffer)) {  // The call succeeded.
285     int paper_code = _wtoi(paper_type_buffer);
286     switch (paper_code) {
287       case DMPAPER_LEGAL:
288         paper_size.SetSize(kLegalWidthInch, kLegalHeightInch);
289         break;
290       case DMPAPER_A4:
291         paper_size.SetSize(kA4WidthInch, kA4HeightInch);
292         break;
293       case DMPAPER_A3:
294         paper_size.SetSize(kA3WidthInch, kA3HeightInch);
295         break;
296       default:  // DMPAPER_LETTER is used for default fallback.
297         break;
298     }
299   }
300   return gfx::Size(
301       paper_size.width() * settings_.device_units_per_inch(),
302       paper_size.height() * settings_.device_units_per_inch());
303 }
304
305 PrintingContext::Result PrintingContextWin::UpdatePrinterSettings(
306     bool external_preview) {
307   DCHECK(!in_print_job_);
308   DCHECK(!external_preview) << "Not implemented";
309
310   ScopedPrinterHandle printer;
311   if (!printer.OpenPrinter(settings_.device_name().c_str()))
312     return OnError();
313
314   // Make printer changes local to Chrome.
315   // See MSDN documentation regarding DocumentProperties.
316   scoped_ptr<DEVMODE, base::FreeDeleter> scoped_dev_mode =
317       CreateDevModeWithColor(printer, settings_.device_name(),
318                              settings_.color() != GRAY);
319   if (!scoped_dev_mode)
320     return OnError();
321
322   {
323     DEVMODE* dev_mode = scoped_dev_mode.get();
324     dev_mode->dmCopies = std::max(settings_.copies(), 1);
325     if (dev_mode->dmCopies > 1) { // do not change unless multiple copies
326       dev_mode->dmFields |= DM_COPIES;
327       dev_mode->dmCollate = settings_.collate() ? DMCOLLATE_TRUE :
328                                                   DMCOLLATE_FALSE;
329     }
330
331     switch (settings_.duplex_mode()) {
332       case LONG_EDGE:
333         dev_mode->dmFields |= DM_DUPLEX;
334         dev_mode->dmDuplex = DMDUP_VERTICAL;
335         break;
336       case SHORT_EDGE:
337         dev_mode->dmFields |= DM_DUPLEX;
338         dev_mode->dmDuplex = DMDUP_HORIZONTAL;
339         break;
340       case SIMPLEX:
341         dev_mode->dmFields |= DM_DUPLEX;
342         dev_mode->dmDuplex = DMDUP_SIMPLEX;
343         break;
344       default:  // UNKNOWN_DUPLEX_MODE
345         break;
346     }
347
348     dev_mode->dmFields |= DM_ORIENTATION;
349     dev_mode->dmOrientation = settings_.landscape() ? DMORIENT_LANDSCAPE :
350                                                       DMORIENT_PORTRAIT;
351   }
352
353   // Update data using DocumentProperties.
354   scoped_dev_mode = CreateDevMode(printer, scoped_dev_mode.get());
355   if (!scoped_dev_mode)
356     return OnError();
357
358   // Set printer then refresh printer settings.
359   if (!AllocateContext(settings_.device_name(), scoped_dev_mode.get(),
360                        &context_)) {
361     return OnError();
362   }
363   PrintSettingsInitializerWin::InitPrintSettings(context_,
364                                                  *scoped_dev_mode.get(),
365                                                  &settings_);
366   return OK;
367 }
368
369 PrintingContext::Result PrintingContextWin::InitWithSettings(
370     const PrintSettings& settings) {
371   DCHECK(!in_print_job_);
372
373   settings_ = settings;
374
375   // TODO(maruel): settings_.ToDEVMODE()
376   ScopedPrinterHandle printer;
377   if (!printer.OpenPrinter(settings_.device_name().c_str())) {
378     return FAILED;
379   }
380
381   Result status = OK;
382
383   if (!GetPrinterSettings(printer, settings_.device_name()))
384     status = FAILED;
385
386   if (status != OK)
387     ResetSettings();
388   return status;
389 }
390
391 PrintingContext::Result PrintingContextWin::NewDocument(
392     const base::string16& document_name) {
393   DCHECK(!in_print_job_);
394   if (!context_)
395     return OnError();
396
397   // Set the flag used by the AbortPrintJob dialog procedure.
398   abort_printing_ = false;
399
400   in_print_job_ = true;
401
402   // Register the application's AbortProc function with GDI.
403   if (SP_ERROR == SetAbortProc(context_, &AbortProc))
404     return OnError();
405
406   DCHECK(SimplifyDocumentTitle(document_name) == document_name);
407   DOCINFO di = { sizeof(DOCINFO) };
408   const std::wstring& document_name_wide = base::UTF16ToWide(document_name);
409   di.lpszDocName = document_name_wide.c_str();
410
411   // Is there a debug dump directory specified? If so, force to print to a file.
412   base::FilePath debug_dump_path = PrintedDocument::debug_dump_path();
413   if (!debug_dump_path.empty()) {
414     // Create a filename.
415     std::wstring filename;
416     Time now(Time::Now());
417     filename = base::TimeFormatShortDateNumeric(now);
418     filename += L"_";
419     filename += base::TimeFormatTimeOfDay(now);
420     filename += L"_";
421     filename += base::UTF16ToWide(document_name);
422     filename += L"_";
423     filename += L"buffer.prn";
424     file_util::ReplaceIllegalCharactersInPath(&filename, '_');
425     debug_dump_path = debug_dump_path.Append(filename);
426     di.lpszOutput = debug_dump_path.value().c_str();
427   }
428
429   // No message loop running in unit tests.
430   DCHECK(!base::MessageLoop::current() ||
431          !base::MessageLoop::current()->NestableTasksAllowed());
432
433   // Begin a print job by calling the StartDoc function.
434   // NOTE: StartDoc() starts a message loop. That causes a lot of problems with
435   // IPC. Make sure recursive task processing is disabled.
436   if (StartDoc(context_, &di) <= 0)
437     return OnError();
438
439   return OK;
440 }
441
442 PrintingContext::Result PrintingContextWin::NewPage() {
443   if (abort_printing_)
444     return CANCEL;
445   DCHECK(context_);
446   DCHECK(in_print_job_);
447
448   // Intentional No-op. NativeMetafile::SafePlayback takes care of calling
449   // ::StartPage().
450
451   return OK;
452 }
453
454 PrintingContext::Result PrintingContextWin::PageDone() {
455   if (abort_printing_)
456     return CANCEL;
457   DCHECK(in_print_job_);
458
459   // Intentional No-op. NativeMetafile::SafePlayback takes care of calling
460   // ::EndPage().
461
462   return OK;
463 }
464
465 PrintingContext::Result PrintingContextWin::DocumentDone() {
466   if (abort_printing_)
467     return CANCEL;
468   DCHECK(in_print_job_);
469   DCHECK(context_);
470
471   // Inform the driver that document has ended.
472   if (EndDoc(context_) <= 0)
473     return OnError();
474
475   ResetSettings();
476   return OK;
477 }
478
479 void PrintingContextWin::Cancel() {
480   abort_printing_ = true;
481   in_print_job_ = false;
482   if (context_)
483     CancelDC(context_);
484   if (dialog_box_) {
485     DestroyWindow(dialog_box_);
486     dialog_box_dismissed_ = true;
487   }
488 }
489
490 void PrintingContextWin::ReleaseContext() {
491   if (context_) {
492     DeleteDC(context_);
493     context_ = NULL;
494   }
495 }
496
497 gfx::NativeDrawingContext PrintingContextWin::context() const {
498   return context_;
499 }
500
501 // static
502 BOOL PrintingContextWin::AbortProc(HDC hdc, int nCode) {
503   if (nCode) {
504     // TODO(maruel):  Need a way to find the right instance to set. Should
505     // leverage PrintJobManager here?
506     // abort_printing_ = true;
507   }
508   return true;
509 }
510
511 bool PrintingContextWin::InitializeSettings(const DEVMODE& dev_mode,
512                                             const std::wstring& new_device_name,
513                                             const PRINTPAGERANGE* ranges,
514                                             int number_ranges,
515                                             bool selection_only) {
516   skia::InitializeDC(context_);
517   DCHECK(GetDeviceCaps(context_, CLIPCAPS));
518   DCHECK(GetDeviceCaps(context_, RASTERCAPS) & RC_STRETCHDIB);
519   DCHECK(GetDeviceCaps(context_, RASTERCAPS) & RC_BITMAP64);
520   // Some printers don't advertise these.
521   // DCHECK(GetDeviceCaps(context_, RASTERCAPS) & RC_SCALING);
522   // DCHECK(GetDeviceCaps(context_, SHADEBLENDCAPS) & SB_CONST_ALPHA);
523   // DCHECK(GetDeviceCaps(context_, SHADEBLENDCAPS) & SB_PIXEL_ALPHA);
524
525   // StretchDIBits() support is needed for printing.
526   if (!(GetDeviceCaps(context_, RASTERCAPS) & RC_STRETCHDIB) ||
527       !(GetDeviceCaps(context_, RASTERCAPS) & RC_BITMAP64)) {
528     NOTREACHED();
529     ResetSettings();
530     return false;
531   }
532
533   DCHECK(!in_print_job_);
534   DCHECK(context_);
535   PageRanges ranges_vector;
536   if (!selection_only) {
537     // Convert the PRINTPAGERANGE array to a PrintSettings::PageRanges vector.
538     ranges_vector.reserve(number_ranges);
539     for (int i = 0; i < number_ranges; ++i) {
540       PageRange range;
541       // Transfer from 1-based to 0-based.
542       range.from = ranges[i].nFromPage - 1;
543       range.to = ranges[i].nToPage - 1;
544       ranges_vector.push_back(range);
545     }
546   }
547
548   settings_.set_ranges(ranges_vector);
549   settings_.set_device_name(new_device_name);
550   settings_.set_selection_only(selection_only);
551   PrintSettingsInitializerWin::InitPrintSettings(context_, dev_mode,
552                                                  &settings_);
553
554   return true;
555 }
556
557 bool PrintingContextWin::GetPrinterSettings(HANDLE printer,
558                                             const std::wstring& device_name) {
559   DCHECK(!in_print_job_);
560
561   scoped_ptr<DEVMODE, base::FreeDeleter> dev_mode =
562       CreateDevMode(printer, NULL);
563
564   if (!dev_mode || !AllocateContext(device_name, dev_mode.get(), &context_)) {
565     ResetSettings();
566     return false;
567   }
568
569   return InitializeSettings(*dev_mode.get(), device_name, NULL, 0, false);
570 }
571
572 // static
573 bool PrintingContextWin::AllocateContext(const std::wstring& device_name,
574                                          const DEVMODE* dev_mode,
575                                          gfx::NativeDrawingContext* context) {
576   *context = CreateDC(L"WINSPOOL", device_name.c_str(), NULL, dev_mode);
577   DCHECK(*context);
578   return *context != NULL;
579 }
580
581 PrintingContext::Result PrintingContextWin::ParseDialogResultEx(
582     const PRINTDLGEX& dialog_options) {
583   // If the user clicked OK or Apply then Cancel, but not only Cancel.
584   if (dialog_options.dwResultAction != PD_RESULT_CANCEL) {
585     // Start fresh.
586     ResetSettings();
587
588     DEVMODE* dev_mode = NULL;
589     if (dialog_options.hDevMode) {
590       dev_mode =
591           reinterpret_cast<DEVMODE*>(GlobalLock(dialog_options.hDevMode));
592       DCHECK(dev_mode);
593     }
594
595     std::wstring device_name;
596     if (dialog_options.hDevNames) {
597       DEVNAMES* dev_names =
598           reinterpret_cast<DEVNAMES*>(GlobalLock(dialog_options.hDevNames));
599       DCHECK(dev_names);
600       if (dev_names) {
601         device_name = reinterpret_cast<const wchar_t*>(dev_names) +
602                       dev_names->wDeviceOffset;
603         GlobalUnlock(dialog_options.hDevNames);
604       }
605     }
606
607     bool success = false;
608     if (dev_mode && !device_name.empty()) {
609       context_ = dialog_options.hDC;
610       PRINTPAGERANGE* page_ranges = NULL;
611       DWORD num_page_ranges = 0;
612       bool print_selection_only = false;
613       if (dialog_options.Flags & PD_PAGENUMS) {
614         page_ranges = dialog_options.lpPageRanges;
615         num_page_ranges = dialog_options.nPageRanges;
616       }
617       if (dialog_options.Flags & PD_SELECTION) {
618         print_selection_only = true;
619       }
620       success = InitializeSettings(*dev_mode,
621                                    device_name,
622                                    page_ranges,
623                                    num_page_ranges,
624                                    print_selection_only);
625     }
626
627     if (!success && dialog_options.hDC) {
628       DeleteDC(dialog_options.hDC);
629       context_ = NULL;
630     }
631
632     if (dev_mode) {
633       GlobalUnlock(dialog_options.hDevMode);
634     }
635   } else {
636     if (dialog_options.hDC) {
637       DeleteDC(dialog_options.hDC);
638     }
639   }
640
641   if (dialog_options.hDevMode != NULL)
642     GlobalFree(dialog_options.hDevMode);
643   if (dialog_options.hDevNames != NULL)
644     GlobalFree(dialog_options.hDevNames);
645
646   switch (dialog_options.dwResultAction) {
647     case PD_RESULT_PRINT:
648       return context_ ? OK : FAILED;
649     case PD_RESULT_APPLY:
650       return context_ ? CANCEL : FAILED;
651     case PD_RESULT_CANCEL:
652       return CANCEL;
653     default:
654       return FAILED;
655   }
656 }
657
658 HRESULT PrintingContextWin::ShowPrintDialog(PRINTDLGEX* options) {
659   // Note that this cannot use ui::BaseShellDialog as the print dialog is
660   // system modal: opening it from a background thread can cause Windows to
661   // get the wrong Z-order which will make the print dialog appear behind the
662   // browser frame (but still being modal) so neither the browser frame nor
663   // the print dialog will get any input. See http://crbug.com/342697
664   // http://crbug.com/180997 for details.
665   base::MessageLoop::ScopedNestableTaskAllower allow(
666       base::MessageLoop::current());
667
668   return PrintDlgEx(options);
669 }
670
671 PrintingContext::Result PrintingContextWin::ParseDialogResult(
672     const PRINTDLG& dialog_options) {
673   // If the user clicked OK or Apply then Cancel, but not only Cancel.
674   // Start fresh.
675   ResetSettings();
676
677   DEVMODE* dev_mode = NULL;
678   if (dialog_options.hDevMode) {
679     dev_mode =
680         reinterpret_cast<DEVMODE*>(GlobalLock(dialog_options.hDevMode));
681     DCHECK(dev_mode);
682   }
683
684   std::wstring device_name;
685   if (dialog_options.hDevNames) {
686     DEVNAMES* dev_names =
687         reinterpret_cast<DEVNAMES*>(GlobalLock(dialog_options.hDevNames));
688     DCHECK(dev_names);
689     if (dev_names) {
690       device_name =
691           reinterpret_cast<const wchar_t*>(
692               reinterpret_cast<const wchar_t*>(dev_names) +
693                   dev_names->wDeviceOffset);
694       GlobalUnlock(dialog_options.hDevNames);
695     }
696   }
697
698   bool success = false;
699   if (dev_mode && !device_name.empty()) {
700     context_ = dialog_options.hDC;
701     success = InitializeSettings(*dev_mode, device_name, NULL, 0, false);
702   }
703
704   if (!success && dialog_options.hDC) {
705     DeleteDC(dialog_options.hDC);
706     context_ = NULL;
707   }
708
709   if (dev_mode) {
710     GlobalUnlock(dialog_options.hDevMode);
711   }
712
713   if (dialog_options.hDevMode != NULL)
714     GlobalFree(dialog_options.hDevMode);
715   if (dialog_options.hDevNames != NULL)
716     GlobalFree(dialog_options.hDevNames);
717
718   return context_ ? OK : FAILED;
719 }
720
721 }  // namespace printing