2012-05-29 08:52:43 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
2011-11-04 14:07:50 -07:00
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2013-03-26 09:34:27 -07:00
|
|
|
[scriptable, uuid(ea89f3b3-804f-40e0-8f40-a1b13cde2b9b)]
|
2011-11-04 14:07:50 -07:00
|
|
|
interface nsIProfiler : nsISupports
|
|
|
|
{
|
2013-03-26 09:34:27 -07:00
|
|
|
void StartProfiler(in uint32_t aEntries, in double aInterval,
|
2012-01-12 10:33:32 -08:00
|
|
|
[array, size_is(aFeatureCount)] in string aFeatures,
|
2013-05-16 13:31:50 -07:00
|
|
|
in uint32_t aFeatureCount,
|
|
|
|
[array, size_is(aFilterCount), optional] in string aThreadNameFilters,
|
|
|
|
[optional] in uint32_t aFilterCount);
|
2011-11-04 14:07:50 -07:00
|
|
|
void StopProfiler();
|
2012-09-05 06:45:28 -07:00
|
|
|
void AddMarker(in string aMarker);
|
2011-12-07 11:48:15 -08:00
|
|
|
string GetProfile();
|
2012-02-02 13:57:20 -08:00
|
|
|
[implicit_jscontext]
|
|
|
|
jsval getProfileData();
|
2011-12-07 11:48:15 -08:00
|
|
|
boolean IsActive();
|
2012-08-22 08:56:38 -07:00
|
|
|
void GetResponsivenessTimes(out uint32_t aCount, [retval, array, size_is(aCount)] out double aResult);
|
|
|
|
void GetFeatures(out uint32_t aCount, [retval, array, size_is(aCount)] out string aFeatures);
|
2012-03-09 07:20:00 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a JSON string of an array of shared library objects.
|
|
|
|
* Every object has three properties: start, end, and name.
|
|
|
|
* start and end are integers describing the address range that the library
|
|
|
|
* occupies in memory. name is the path of the library as a string.
|
2012-03-12 04:07:05 -07:00
|
|
|
*
|
|
|
|
* On Windows profiling builds, the shared library objects will have
|
|
|
|
* additional pdbSignature and pdbAge properties for uniquely identifying
|
|
|
|
* shared library versions for stack symbolication.
|
2012-03-09 07:20:00 -08:00
|
|
|
*/
|
|
|
|
AString getSharedLibraryInformation();
|
2011-11-04 14:07:50 -07:00
|
|
|
};
|
|
|
|
|