зеркало из https://github.com/mozilla/gecko-dev.git
Adding ref & memory counting macros.
This commit is contained in:
Родитель
ef8e746fdd
Коммит
540e7e39be
|
@ -79,10 +79,16 @@ DEFINE_RDF_VOCAB(RDF_NAMESPACE_URI, NC, type);
|
|||
class nsMenuItem
|
||||
{
|
||||
public:
|
||||
// memory & ref counting & leak prevention stuff
|
||||
nsMenuItem() { MOZ_COUNT_CTOR(nsMenuItem); }
|
||||
~nsMenuItem() { MOZ_COUNT_DTOR(nsMenuItem); }
|
||||
|
||||
nsCOMPtr<nsIAtom> mCharset;
|
||||
nsAutoString mTitle;
|
||||
};
|
||||
|
||||
MOZ_DECL_CTOR_COUNTER(nsMenuItem);
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// Class nsCharsetMenu [declaration]
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче