- Change bool to PRBool in Stopwatch::Start()

- Add the NS_TIMER_STYLE_RESOLUTION define to nsITimeRecorder.idl
This commit is contained in:
nisheeth%netscape.com 1999-09-20 08:21:01 +00:00
Родитель 95fca3acb9
Коммит d58a65a956
3 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -19,6 +19,10 @@
#include "nsISupports.idl"
%{C++
#define NS_TIMER_STYLE_RESOLUTION 1
%}
[scriptable, uuid(0e5f5cb6-6d29-11d3-aef7-00108300ff91)]
interface nsITimeRecorder : nsISupports
{

Просмотреть файл

@ -1,3 +1,5 @@
#include "nscore.h"
const double gTicks = 1.0e-7;
#ifdef RAPTOR_PERF_METRICS

Просмотреть файл

@ -15,7 +15,7 @@ Stopwatch::Stopwatch() {
}
void Stopwatch::Start(bool reset) {
void Stopwatch::Start(PRBool reset) {
if (reset) {
fTotalCpuTime = 0;
fTotalRealTime = 0;