Bug 1777519 [wpt PR 34660] - Avoid OSError from --kill-safari stat'ing random paths...
[gecko.git] / widget / windows / nsPrintDialogWin.h
blobdf519865a18377f11bb49eacadb259c8e75ae5fb
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsPrintDialog_h__
7 #define nsPrintDialog_h__
9 #include "nsIPrintDialogService.h"
11 #include "nsCOMPtr.h"
12 #include "nsIWindowWatcher.h"
14 class nsIPrintSettings;
15 class nsIDialogParamBlock;
17 class nsPrintDialogServiceWin final : public nsIPrintDialogService {
18 public:
19 nsPrintDialogServiceWin();
21 NS_DECL_ISUPPORTS
22 NS_DECL_NSIPRINTDIALOGSERVICE
24 private:
25 virtual ~nsPrintDialogServiceWin();
27 nsresult DoDialog(mozIDOMWindowProxy* aParent,
28 nsIDialogParamBlock* aParamBlock, nsIPrintSettings* aPS,
29 const char* aChromeURL);
31 HWND GetHWNDForDOMWindow(mozIDOMWindowProxy* aWindow);
33 nsCOMPtr<nsIWindowWatcher> mWatcher;
36 NS_DEFINE_STATIC_IID_ACCESSOR(nsPrintDialogServiceWin,
37 NS_IPRINTDIALOGSERVICE_IID)
39 #endif