Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / windows / nsPrintSettingsServiceWin.h
blobe11d307a8b2dd360f42319ad50f644c601843292
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsPrintSettingsServiceWin_h
8 #define nsPrintSettingsServiceWin_h
10 #include "nsPrintSettingsService.h"
12 class nsIPrintSettings;
14 class nsPrintSettingsServiceWin final : public nsPrintSettingsService {
15 public:
16 nsPrintSettingsServiceWin() {}
18 NS_IMETHODIMP SerializeToPrintData(
19 nsIPrintSettings* aSettings,
20 mozilla::embedding::PrintData* data) override;
22 NS_IMETHODIMP DeserializeToPrintSettings(
23 const mozilla::embedding::PrintData& data,
24 nsIPrintSettings* settings) override;
26 nsresult _CreatePrintSettings(nsIPrintSettings** _retval) override;
29 #endif // nsPrintSettingsServiceWin_h