Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef __nsPrintingPromptService_h |
michael@0 | 7 | #define __nsPrintingPromptService_h |
michael@0 | 8 | |
michael@0 | 9 | // {E042570C-62DE-4bb6-A6E0-798E3C07B4DF} |
michael@0 | 10 | #define NS_PRINTINGPROMPTSERVICE_CID \ |
michael@0 | 11 | {0xe042570c, 0x62de, 0x4bb6, { 0xa6, 0xe0, 0x79, 0x8e, 0x3c, 0x7, 0xb4, 0xdf}} |
michael@0 | 12 | #define NS_PRINTINGPROMPTSERVICE_CONTRACTID \ |
michael@0 | 13 | "@mozilla.org/embedcomp/printingprompt-service;1" |
michael@0 | 14 | |
michael@0 | 15 | #include "nsCOMPtr.h" |
michael@0 | 16 | #include "nsIPrintingPromptService.h" |
michael@0 | 17 | #include "nsPIPromptService.h" |
michael@0 | 18 | #include "nsIWindowWatcher.h" |
michael@0 | 19 | |
michael@0 | 20 | // Printing Progress Includes |
michael@0 | 21 | #include "nsPrintProgress.h" |
michael@0 | 22 | #include "nsIWebProgressListener.h" |
michael@0 | 23 | |
michael@0 | 24 | |
michael@0 | 25 | class nsIDOMWindow; |
michael@0 | 26 | class nsIDialogParamBlock; |
michael@0 | 27 | |
michael@0 | 28 | class nsPrintingPromptService: public nsIPrintingPromptService, |
michael@0 | 29 | public nsIWebProgressListener |
michael@0 | 30 | { |
michael@0 | 31 | public: |
michael@0 | 32 | nsPrintingPromptService(); |
michael@0 | 33 | virtual ~nsPrintingPromptService(); |
michael@0 | 34 | |
michael@0 | 35 | nsresult Init(); |
michael@0 | 36 | |
michael@0 | 37 | NS_DECL_NSIPRINTINGPROMPTSERVICE |
michael@0 | 38 | NS_DECL_NSIWEBPROGRESSLISTENER |
michael@0 | 39 | NS_DECL_ISUPPORTS |
michael@0 | 40 | |
michael@0 | 41 | private: |
michael@0 | 42 | nsCOMPtr<nsIPrintProgress> mPrintProgress; |
michael@0 | 43 | }; |
michael@0 | 44 | |
michael@0 | 45 | #endif |