nsISupports
Last changed in Gecko 7.0 (Firefox 7.0 / Thunderbird 7.0 / SeaMonkey 2.4)void callback(in ACString process, in AUTF8String path, in PRInt32 kind, in PRInt32 units, in PRInt64 amount, in AUTF8String description, in nsISupports closure); |
Called to provide information from a multi-reporter. Implement this method to handle the report information.
void callback( in ACString process, in AUTF8String path, in PRInt32 kind, in PRInt32 units, in PRInt64 amount, in AUTF8String description, in nsISupports closure );
process
process
attribute for the memory reporter.path
path
attribute.kind
kind
attribute.units
units
attribute.amount
amount
attribute.description
description
attribute.closure
nsISupports
object providing any additional data the callback might need; you provide this when you call nsIMemoryMultiReporter.collectReports()
. It will be null
if no additional data was provided.