Bug 1861709 replace AudioCallbackDriver::ThreadRunning() assertions that mean to...
[gecko.git] / widget / windows / nsPrintDialogWin.h
blobbb8f212eb5bbd7680f17ea91003cd3788b756cf1
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 #include <windef.h>
16 class nsIPrintSettings;
17 class nsIDialogParamBlock;
19 class nsPrintDialogServiceWin final : public nsIPrintDialogService {
20 public:
21 nsPrintDialogServiceWin();
23 NS_DECL_ISUPPORTS
24 NS_DECL_NSIPRINTDIALOGSERVICE
26 private:
27 virtual ~nsPrintDialogServiceWin();
29 nsresult DoDialog(mozIDOMWindowProxy* aParent,
30 nsIDialogParamBlock* aParamBlock, nsIPrintSettings* aPS,
31 const char* aChromeURL);
33 nsCOMPtr<nsIWindowWatcher> mWatcher;
36 NS_DEFINE_STATIC_IID_ACCESSOR(nsPrintDialogServiceWin,
37 NS_IPRINTDIALOGSERVICE_IID)
39 #endif