/* 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 js_TelemetryTimers_h
#define js_TelemetryTimers_h

#include "mozilla/TimeStamp.h"

#include "jstypes.h"

struct JS_PUBLIC_API JSContext;

namespace JS {

/** Timing information for telemetry purposes **/
struct JSTimers {
  mozilla::TimeDuration executionTime;       // Total time spent executing
  mozilla::TimeDuration delazificationTime;  // Total time spent delazifying
};

extern JS_PUBLIC_API void SetMeasuringExecutionTimeEnabled(JSContext* cx,
                                                           bool value);
extern JS_PUBLIC_API JSTimers GetJSTimers(JSContext* cx);

}  // namespace JS

#endif  // js_TelemetryTimers_h
