2013-05-20 20:08:11 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#ifndef nsCycleCollectionNoteRootCallback_h__
|
|
|
|
#define nsCycleCollectionNoteRootCallback_h__
|
|
|
|
|
|
|
|
class nsCycleCollectionParticipant;
|
|
|
|
class nsISupports;
|
|
|
|
|
|
|
|
class nsCycleCollectionNoteRootCallback {
|
|
|
|
public:
|
2017-07-28 23:11:03 +00:00
|
|
|
// aRoot must be canonical (ie the result of QIing to
|
|
|
|
// nsCycleCollectionISupports).
|
|
|
|
NS_IMETHOD_(void)
|
|
|
|
NoteXPCOMRoot(nsISupports* aRoot,
|
|
|
|
nsCycleCollectionParticipant* aParticipant) = 0;
|
|
|
|
|
2015-05-29 19:57:23 +00:00
|
|
|
NS_IMETHOD_(void) NoteJSRoot(JSObject* aRoot) = 0;
|
2014-06-27 01:35:39 +00:00
|
|
|
NS_IMETHOD_(void)
|
|
|
|
NoteNativeRoot(void* aRoot, nsCycleCollectionParticipant* aParticipant) = 0;
|
2013-05-20 20:08:11 +00:00
|
|
|
|
2014-12-05 17:38:32 +00:00
|
|
|
NS_IMETHOD_(void)
|
|
|
|
NoteWeakMapping(JSObject* aMap, JS::GCCellPtr aKey, JSObject* aKeyDelegate,
|
|
|
|
JS::GCCellPtr aVal) = 0;
|
2013-05-20 20:08:11 +00:00
|
|
|
|
|
|
|
bool WantAllTraces() const { return mWantAllTraces; }
|
2018-11-30 10:46:48 +00:00
|
|
|
|
2013-05-20 20:08:11 +00:00
|
|
|
protected:
|
|
|
|
nsCycleCollectionNoteRootCallback() : mWantAllTraces(false) {}
|
|
|
|
|
|
|
|
bool mWantAllTraces;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsCycleCollectionNoteRootCallback_h__
|