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.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 __nsDialogParamBlock_h
7 #define __nsDialogParamBlock_h
9 #include "nsIDialogParamBlock.h"
10 #include "nsIMutableArray.h"
11 #include "nsCOMPtr.h"
13 // {4E4AAE11-8901-46cc-8217-DAD7C5415873}
14 #define NS_DIALOGPARAMBLOCK_CID \
15 {0x4e4aae11, 0x8901, 0x46cc, {0x82, 0x17, 0xda, 0xd7, 0xc5, 0x41, 0x58, 0x73}}
17 class nsString;
19 class nsDialogParamBlock: public nsIDialogParamBlock
20 {
21 public:
22 nsDialogParamBlock();
23 virtual ~nsDialogParamBlock();
25 NS_DECL_NSIDIALOGPARAMBLOCK
26 NS_DECL_ISUPPORTS
28 private:
30 enum {kNumInts = 8, kNumStrings = 16};
32 nsresult InBounds(int32_t inIndex, int32_t inMax) {
33 return inIndex >= 0 && inIndex < inMax ? NS_OK : NS_ERROR_ILLEGAL_VALUE;
34 }
36 int32_t mInt[kNumInts];
37 int32_t mNumStrings;
38 nsString* mString;
39 nsCOMPtr<nsIMutableArray> mObjects;
40 };
42 #endif