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"
|
|
|
|
|
2014-06-13 19:32:13 -07:00
|
|
|
[scriptable, uuid(f7f3709c-04a9-45c6-8e34-40f762654a78)]
|
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();
|
2014-02-28 12:16:38 -08:00
|
|
|
boolean IsPaused();
|
|
|
|
void PauseSampling();
|
|
|
|
void ResumeSampling();
|
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 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
|
|
|
};
|
|
|
|
|