1999-08-22 00:07:27 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-08-22 00:07:27 +04:00
|
|
|
|
1999-08-03 07:41:27 +04:00
|
|
|
#ifndef nsWeakReference_h__
|
|
|
|
#define nsWeakReference_h__
|
|
|
|
|
|
|
|
// nsWeakReference.h
|
|
|
|
|
2012-10-04 23:45:07 +04:00
|
|
|
// See mfbt/WeakPtr.h for a more typesafe C++ implementation of weak references
|
|
|
|
|
2004-10-25 23:34:45 +04:00
|
|
|
#include "nsIWeakReferenceUtils.h"
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2002-01-10 17:16:05 +03:00
|
|
|
class nsWeakReference;
|
|
|
|
|
2006-04-19 20:29:31 +04:00
|
|
|
// Set IMETHOD_VISIBILITY to empty so that the class-level NS_COM declaration
|
|
|
|
// controls member method visibility.
|
2004-02-03 11:32:33 +03:00
|
|
|
#undef IMETHOD_VISIBILITY
|
2007-06-19 18:53:05 +04:00
|
|
|
#define IMETHOD_VISIBILITY NS_COM_GLUE
|
2004-02-03 11:32:33 +03:00
|
|
|
|
2004-10-29 23:43:51 +04:00
|
|
|
class NS_COM_GLUE nsSupportsWeakReference : public nsISupportsWeakReference
|
1999-08-22 00:07:27 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsSupportsWeakReference()
|
|
|
|
: mProxy(0)
|
|
|
|
{
|
|
|
|
// nothing else to do here
|
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
1999-08-22 15:25:50 +04:00
|
|
|
NS_DECL_NSISUPPORTSWEAKREFERENCE
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2004-01-22 04:01:19 +03:00
|
|
|
protected:
|
|
|
|
inline ~nsSupportsWeakReference();
|
|
|
|
|
1999-08-22 00:07:27 +04:00
|
|
|
private:
|
|
|
|
friend class nsWeakReference;
|
1999-08-03 07:41:27 +04:00
|
|
|
|
1999-08-22 00:07:27 +04:00
|
|
|
void
|
|
|
|
NoticeProxyDestruction()
|
|
|
|
// ...called (only) by an |nsWeakReference| from _its_ dtor.
|
|
|
|
{
|
|
|
|
mProxy = 0;
|
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
1999-08-22 00:07:27 +04:00
|
|
|
nsWeakReference* mProxy;
|
1999-09-22 00:20:04 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2006-04-19 20:29:31 +04:00
|
|
|
void ClearWeakReferences();
|
2011-09-29 10:19:26 +04:00
|
|
|
bool HasWeakReferences() const {return mProxy != 0;}
|
1999-08-22 00:07:27 +04:00
|
|
|
};
|
1999-08-03 07:41:27 +04:00
|
|
|
|
2004-02-03 11:32:33 +03:00
|
|
|
#undef IMETHOD_VISIBILITY
|
2014-06-02 16:08:27 +04:00
|
|
|
#define IMETHOD_VISIBILITY
|
2004-02-03 11:32:33 +03:00
|
|
|
|
1999-09-22 00:20:04 +04:00
|
|
|
inline
|
|
|
|
nsSupportsWeakReference::~nsSupportsWeakReference()
|
1999-08-22 00:07:27 +04:00
|
|
|
{
|
1999-09-22 00:20:04 +04:00
|
|
|
ClearWeakReferences();
|
1999-08-22 00:07:27 +04:00
|
|
|
}
|
1999-08-03 07:41:27 +04:00
|
|
|
|
|
|
|
#endif
|