Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
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 __nsDialogParamBlock_h |
michael@0 | 7 | #define __nsDialogParamBlock_h |
michael@0 | 8 | |
michael@0 | 9 | #include "nsIDialogParamBlock.h" |
michael@0 | 10 | #include "nsIMutableArray.h" |
michael@0 | 11 | #include "nsCOMPtr.h" |
michael@0 | 12 | |
michael@0 | 13 | // {4E4AAE11-8901-46cc-8217-DAD7C5415873} |
michael@0 | 14 | #define NS_DIALOGPARAMBLOCK_CID \ |
michael@0 | 15 | {0x4e4aae11, 0x8901, 0x46cc, {0x82, 0x17, 0xda, 0xd7, 0xc5, 0x41, 0x58, 0x73}} |
michael@0 | 16 | |
michael@0 | 17 | class nsString; |
michael@0 | 18 | |
michael@0 | 19 | class nsDialogParamBlock: public nsIDialogParamBlock |
michael@0 | 20 | { |
michael@0 | 21 | public: |
michael@0 | 22 | nsDialogParamBlock(); |
michael@0 | 23 | virtual ~nsDialogParamBlock(); |
michael@0 | 24 | |
michael@0 | 25 | NS_DECL_NSIDIALOGPARAMBLOCK |
michael@0 | 26 | NS_DECL_ISUPPORTS |
michael@0 | 27 | |
michael@0 | 28 | private: |
michael@0 | 29 | |
michael@0 | 30 | enum {kNumInts = 8, kNumStrings = 16}; |
michael@0 | 31 | |
michael@0 | 32 | nsresult InBounds(int32_t inIndex, int32_t inMax) { |
michael@0 | 33 | return inIndex >= 0 && inIndex < inMax ? NS_OK : NS_ERROR_ILLEGAL_VALUE; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | int32_t mInt[kNumInts]; |
michael@0 | 37 | int32_t mNumStrings; |
michael@0 | 38 | nsString* mString; |
michael@0 | 39 | nsCOMPtr<nsIMutableArray> mObjects; |
michael@0 | 40 | }; |
michael@0 | 41 | |
michael@0 | 42 | #endif |
michael@0 | 43 |